File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
regex/src/com.oracle.truffle.regex/src/com/oracle/truffle/regex/util Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2020, 2024 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2020, 2025 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* The Universal Permissive License (UPL), Version 1.0
@@ -260,12 +260,12 @@ public static boolean equals(long[] bs1, long[] bs2) {
260
260
}
261
261
}
262
262
for (int i = bs1 .length ; i < bs2 .length ; i ++) {
263
- if (bs1 [i ] != 0 ) {
263
+ if (bs2 [i ] != 0 ) {
264
264
return false ;
265
265
}
266
266
}
267
267
for (int i = bs2 .length ; i < bs1 .length ; i ++) {
268
- if (bs2 [i ] != 0 ) {
268
+ if (bs1 [i ] != 0 ) {
269
269
return false ;
270
270
}
271
271
}
You can’t perform that action at this time.
0 commit comments