diff options
author | jestin | 2002-12-30 13:07:11 +0000 |
---|---|---|
committer | jestin | 2002-12-30 13:07:11 +0000 |
commit | acaedb9d66cfab0329c49a9120938143b7c15487 (patch) | |
tree | f4f76b8f1f92cf31bb0783a9a1a7eba44758b8cb /src/IvyClient.java | |
parent | e126ac84a2d2415328989d0e084faeda42e303c8 (diff) | |
download | ivy-java-acaedb9d66cfab0329c49a9120938143b7c15487.zip ivy-java-acaedb9d66cfab0329c49a9120938143b7c15487.tar.gz ivy-java-acaedb9d66cfab0329c49a9120938143b7c15487.tar.bz2 ivy-java-acaedb9d66cfab0329c49a9120938143b7c15487.tar.xz |
use of the old Vector API and old System.getProperties in order to allow the
classes to be compiled with a 1.1.7A jdk
Diffstat (limited to 'src/IvyClient.java')
-rwxr-xr-x | src/IvyClient.java | 2 |
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; } |