minor: added @NotNull annotation

This commit is contained in:
Svetlana Isakova
2014-02-24 14:25:14 +04:00
parent 11c953c220
commit 69e4346961
@@ -28,11 +28,12 @@ public class LocalFunctionDeclarationInstruction extends InstructionWithNext {
private final Pseudocode body;
private Instruction sink;
public LocalFunctionDeclarationInstruction(@NotNull JetElement element, Pseudocode body) {
public LocalFunctionDeclarationInstruction(@NotNull JetElement element, @NotNull Pseudocode body) {
super(element);
this.body = body;
}
@NotNull
public Pseudocode getBody() {
return body;
}