aboutsummaryrefslogtreecommitdiff
path: root/src/IvyClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/IvyClient.java')
-rwxr-xr-xsrc/IvyClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IvyClient.java b/src/IvyClient.java
index 1556930..ba30d74 100755
--- a/src/IvyClient.java
+++ b/src/IvyClient.java
@@ -358,7 +358,7 @@ public class IvyClient implements Runnable {
while (to<b.length) {
while ( (to<b.length) && (b[to]!=3) ) to++;
if (to<b.length) {
- v.add(s.substring(from,to));
+ v.addElement(s.substring(from,to));
to++;
from=to;
}