* jode/expr/InvokeOperator.java.in (dumpExpression): Fixed the

check for null outerExpr.


git-svn-id: https://svn.code.sf.net/p/jode/code/branches/branch_1_1@1341 379699f6-c40d-0410-875b-85095c16579e
branch_1_1
hoenicke 23 years ago
parent 15e7ec9dc0
commit 805ab8613d
  1. 5
      jode/ChangeLog
  2. 3
      jode/jode/expr/InvokeOperator.java.in

@ -1,3 +1,8 @@
2001-08-09 Jochen Hoenicke <jochen@gnu.org>
* jode/expr/InvokeOperator.java.in (dumpExpression): Fixed the
check for null outerExpr.
2001-07-27 Jochen Hoenicke <jochen@gnu.org>
* jode/obfuscator/Main.java.in (stripping): Initialize to 0 which

@ -982,7 +982,8 @@ public final class InvokeOperator extends Operator
}
} else {
qualifiedNew = true;
if (outerExpr.getType() instanceof NullType) {
if (outerExpr.getType().getCanonic()
instanceof NullType) {
writer.print("(");
writer.startOp(writer.EXPL_PAREN, 1);
writer.print("(");

Loading…
Cancel
Save