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