Skip to content

Commit 7fe72c1

Browse files
committed
Merge branch 'mciancia-master'
2 parents e7644e6 + 108f339 commit 7fe72c1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/com/jwetherell/algorithms/mathematics/test/Mathematics.java

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ private static int nextRandomInt(int min, int max) {
3131
public void multiplication() {
3232
int a = nextRandomInt(MIN, MAX);
3333
int b = nextRandomInt(MIN, MAX);
34-
String resultString;
3534
long result = Multiplication.multiplyUsingLoop(a, b);
3635
long check = Multiplication.multiplication(a, b);
3736
assertTrue("Multiplication using a loop. a=" + a + " b=" + b + " result=" + result + " check=" + check, (result == check));

0 commit comments

Comments
 (0)