mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
NPE (EA-25961)
This commit is contained in:
+5
-1
@@ -103,6 +103,10 @@ public class MethodCallInstruction extends Instruction {
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return myMethodType == MethodType.UNBOXING ? "UNBOX" : myMethodType == MethodType.BOXING ? "BOX" : "CALL_METHOD: " + myCall.getText();
|
||||
return myMethodType == MethodType.UNBOXING
|
||||
? "UNBOX"
|
||||
: myMethodType == MethodType.BOXING
|
||||
? "BOX" :
|
||||
"CALL_METHOD: " + (myCall == null ? "null" : myCall.getText());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user