From 91ffeb6aed7bb02e2556c7d5ca891107413782b3 Mon Sep 17 00:00:00 2001 From: Eric Scharff Date: Mon, 15 Oct 2007 14:06:06 -0600 Subject: [PATCH] Signature of removeElementAt() was not correct, fixes exception in SWT --- classpath/java/util/Vector.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classpath/java/util/Vector.java b/classpath/java/util/Vector.java index cf2d30f58b..6f3dfb1973 100644 --- a/classpath/java/util/Vector.java +++ b/classpath/java/util/Vector.java @@ -58,8 +58,8 @@ public class Vector implements List { return list.toArray(a); } - public T removeElementAt(int index) { - return remove(index); + public void removeElementAt(int index) { + remove(index); } public synchronized boolean remove(T element) {