blob: ac015f0aeed3d0ea0b512f42be0885067ee479ae [file] [log] [blame]
package com.siyeh.ipp.whileloop.replace_do_while_with_while_loop;
class FinalVariable1 {
void m() {
int j = 10;
System.out.println(j);
while (c()) {
j = 10;
System.out.println(j);
}
}
boolean c() {
return true;
}
}