mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 03:12:15 +07:00
GitOrigin-RevId: 0be6faa7bd6ea391f53bc811fe8f3124424fd950
10 lines
171 B
Java
10 lines
171 B
Java
// "Replace with 'Math.min()' call" "true"
|
|
class Test {
|
|
|
|
public int mymin(int a, int b) {
|
|
if<caret>(a < b) {
|
|
return a;
|
|
}
|
|
return (/*comment*/(b));
|
|
}
|
|
} |