mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
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));
|
|
}
|
|
} |