--- jsr166/src/main/java/util/Vector.java 2005/11/27 14:54:23 1.3 +++ jsr166/src/main/java/util/Vector.java 2005/11/28 03:28:25 1.4 @@ -1117,7 +1117,8 @@ public class Vector throw new ConcurrentModificationException(); } } - public E previous() { + + public E previous() { try { int i = cursor - 1; E prev = get(i); @@ -1143,7 +1144,7 @@ public class Vector cursor--; lastRet = -1; expectedModCount = modCount; - } catch (IndexOutOfBoundsException e) { + } catch (IndexOutOfBoundsException ex) { throw new ConcurrentModificationException(); } }