Fix warnings (redundant boolean operation and others)

GitOrigin-RevId: 115ba7dfd69a2b37963430aac7e979271c0331db
master
Tagir Valeev 4 years ago committed by intellij-monorepo-bot
parent e35da00aec
commit 488da329f4
  1. 2
      src/org/jetbrains/java/decompiler/modules/decompiler/IfHelper.java

@ -100,7 +100,7 @@ public class IfHelper {
break;
}
res |= true;
res = true;
}
return res;

Loading…
Cancel
Save