mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-22 17:22:18 -05:00
Cleanup (unneeded variable)
This commit is contained in:
parent
c64b0aaa10
commit
38f1a1a9ee
@ -872,7 +872,6 @@ public class ExprProcessor implements CodeConstants {
|
||||
boolean castAlways,
|
||||
BytecodeMappingTracer tracer) {
|
||||
|
||||
boolean ret = false;
|
||||
VarType rightType = exprent.getExprType();
|
||||
|
||||
TextBuffer res = exprent.toJava(indent, tracer);
|
||||
@ -889,12 +888,11 @@ public class ExprProcessor implements CodeConstants {
|
||||
}
|
||||
|
||||
res.prepend("(" + getCastTypeName(leftType) + ")");
|
||||
ret = true;
|
||||
}
|
||||
|
||||
buffer.append(res);
|
||||
|
||||
return ret;
|
||||
return cast;
|
||||
}
|
||||
|
||||
private static boolean isIntConstant(Exprent exprent) {
|
||||
|
Loading…
Reference in New Issue
Block a user