Omit unnecessary unboxing calls in decompiled code
This commit is contained in:
committed by
Egor.Ushakov
parent
aa78b7df28
commit
39db41ee8b
@@ -154,7 +154,7 @@ public class o {
|
||||
|
||||
try {
|
||||
if (this.a instanceof Boolean) {
|
||||
return ((Boolean)this.a).booleanValue();
|
||||
return (Boolean)this.a;
|
||||
}
|
||||
} catch (IllegalArgumentException var3) {
|
||||
throw var3;
|
||||
|
||||
Reference in New Issue
Block a user