aboutsummaryrefslogtreecommitdiff
path: root/src/IvyClient.java
diff options
context:
space:
mode:
authorjestin2002-12-30 13:07:11 +0000
committerjestin2002-12-30 13:07:11 +0000
commitacaedb9d66cfab0329c49a9120938143b7c15487 (patch)
treef4f76b8f1f92cf31bb0783a9a1a7eba44758b8cb /src/IvyClient.java
parente126ac84a2d2415328989d0e084faeda42e303c8 (diff)
downloadivy-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-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;
}