Skip to content

Commit d058aef

Browse files
minor update
1 parent 0ecd417 commit d058aef

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/jdk/jdk/incubator/vector/AbstractVectorTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ static int[] fillInts(int[] a, IntOp f) {
110110
}
111111

112112
static final List<IntFunction<boolean[]>> BOOLEAN_MASK_GENERATORS = List.of(
113-
withToString("mask[i % 2]", (int s) -> {
114-
return fill_boolean(s,
113+
withToString("mask[i % 2]", (int l) -> {
114+
return fill_boolean(l,
115115
i -> ((i % 2) == 0));
116116
}),
117-
withToString("mask[i % 5]", (int s) -> {
118-
return fill_boolean(s,
117+
withToString("mask[i % 5]", (int l) -> {
118+
return fill_boolean(l,
119119
i -> ((i % 5) == 0));
120120
}),
121121

0 commit comments

Comments
 (0)