mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 0be6faa7bd6ea391f53bc811fe8f3124424fd950
11 lines
189 B
Java
11 lines
189 B
Java
// "Replace with 'Math.min()' call" "true"
|
|
class Test {
|
|
|
|
void test(int a, int b) {
|
|
int c;
|
|
if<caret>/*0*/(((a) /*1*/< (b))) {
|
|
c = (a)/*2*/;
|
|
}
|
|
else c/*3*/ = (b);
|
|
}
|
|
} |