Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
snuyanzin committed Feb 20, 2024
1 parent 4d17c1b commit cdbc90e
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,7 @@ public static void main(String[] args) throws IOException {
failed = (e * 0.99 > t || e * 1.01 < t);
}
} catch (NumberFormatException nfe2) {
failed =
!expected[i]
.trim()
.equals(actual[i].replace("\"", "").trim());
failed = !expected[i].trim().equals(actual[i].replace("\"", "").trim());
}
}
if (failed) {
Expand Down

0 comments on commit cdbc90e

Please sign in to comment.