mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Also declaration is joined automatically GitOrigin-RevId: f94ddf5ae3e94edffdb44cd56ad6bf8b3a9054b4
7 lines
243 B
Java
7 lines
243 B
Java
// "Fix all ''compare()' method can be used to compare numbers' problems in file" "true"
|
|
class Test {
|
|
public static int _compare(int mask1, int mask2) {
|
|
int compareResult = Integer.compare(mask1, mask2);
|
|
return compareResult;
|
|
}
|
|
} |