Mirror of the JODE repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jode/jode/test/IfCombine.java

15 lines
248 B

package jode.test;
public class IfCombine {
boolean a,b,c;
int i,j,k;
public void foo() {
if ( a && (b || c) && (i<k)) {
if (a != b)
i = 1;
else
i = 2;
}
}
}