Useless ;

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@745062 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-02-17 13:40:53 +00:00
parent 2acd5aabef
commit 65eb026acf
2 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ public abstract class TestArrayList extends AbstractTestList {
list.get(1);
fail("get(int i) should have thrown IndexOutOfBoundsException");
} catch (IndexOutOfBoundsException e) {
; // Expected result
// Expected result
}
}

View File

@ -64,14 +64,14 @@ public class TestArrayStack extends TestArrayList {
stack.peek();
fail("peek() should have thrown EmptyStackException");
} catch (EmptyStackException e) {
; // Expected result
// Expected result
}
try {
stack.pop();
fail("pop() should have thrown EmptyStackException");
} catch (EmptyStackException e) {
; // Expected result
// Expected result
}
}