mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
GitOrigin-RevId: 4f5de4c5202dfffdd1759ab5b40e5afb342ceacf
11 lines
204 B
Java
11 lines
204 B
Java
import java.util.Arrays;
|
|
|
|
import org.jetbrains.annotations.Contract;
|
|
|
|
// IDEA-260755
|
|
class X {
|
|
@Contract(pure = true)
|
|
boolean test(int[] arr1, int[] arr2) {
|
|
return Arrays.equals(arr1, arr2);
|
|
}
|
|
} |