minor: added @NotNull annotation
This commit is contained in:
+2
-1
@@ -28,11 +28,12 @@ public class LocalFunctionDeclarationInstruction extends InstructionWithNext {
|
|||||||
private final Pseudocode body;
|
private final Pseudocode body;
|
||||||
private Instruction sink;
|
private Instruction sink;
|
||||||
|
|
||||||
public LocalFunctionDeclarationInstruction(@NotNull JetElement element, Pseudocode body) {
|
public LocalFunctionDeclarationInstruction(@NotNull JetElement element, @NotNull Pseudocode body) {
|
||||||
super(element);
|
super(element);
|
||||||
this.body = body;
|
this.body = body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@NotNull
|
||||||
public Pseudocode getBody() {
|
public Pseudocode getBody() {
|
||||||
return body;
|
return body;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user