Skip to content

Commit c16319b

Browse files
Remove redundant cast
1 parent 4f948ab commit c16319b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/oracle/r2dbc/impl/TypeMappingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ public void testArrayNumericTypeMappings() {
653653
i -> {
654654
long[] moreLongs = new long[longs.length];
655655
for (int j = 0; j < longs.length; j++)
656-
moreLongs[j] = (long)(longs[j] + i);
656+
moreLongs[j] = longs[j] + i;
657657
return moreLongs;
658658
},
659659
false,

0 commit comments

Comments
 (0)