mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 11:35:12 +07:00
GitOrigin-RevId: 0be6faa7bd6ea391f53bc811fe8f3124424fd950
10 lines
211 B
Java
10 lines
211 B
Java
// "Replace with 'Math.min()' call" "true"
|
|
class Test {
|
|
|
|
void test(int maxDrain) {
|
|
int /*0*/drained = /*1*/maxDrain;
|
|
if<caret> /*2*/(10/*3*/ < maxDrain) {
|
|
drained/*4*/ = 10/*5*/;
|
|
}/*6*/
|
|
}
|
|
} |