Skip to content

Commit

Permalink
Unnecessary type cast removed
Browse files Browse the repository at this point in the history
  • Loading branch information
jjfumero committed Jul 4, 2024
1 parent 3c507cc commit 25764af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ public void testTornadoMathAtanDouble() throws TornadoExecutionPlanException {
DoubleArray seq = new DoubleArray(size);

IntStream.range(0, size).parallel().forEach(i -> {
data.set(i, (float) Math.random());
data.set(i, Math.random());
seq.set(i, data.get(i));
});

Expand Down

0 comments on commit 25764af

Please sign in to comment.