Skip to content

Commit 06f8bd9

Browse files
committed
Use final
1 parent dfc51bd commit 06f8bd9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/lang3/math/FractionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ void testHashCode() {
638638
"1756395909, 4194598, 1174949894, 42860673"
639639
})
640640
// @formatter:on
641-
void testHashCodeNotEquals(int f1n, int f1d, int f2n, int f2d) {
641+
void testHashCodeNotEquals(final int f1n, final int f1d, final int f2n, final int f2d) {
642642
assertNotEquals(Fraction.getFraction(f1n, f1d), Fraction.getFraction(f2n, f2d));
643643
assertNotEquals(Fraction.getFraction(f1n, f1d).hashCode(), Fraction.getFraction(f2n, f2d).hashCode());
644644
}

0 commit comments

Comments
 (0)