diff --git a/apps/BOB/src/net/i2p/BOB/Lifted.java b/apps/BOB/src/net/i2p/BOB/Lifted.java index 47268243677aea05d4ec7c1d2d21a9fc851beb52..6c38cba777da0bb1ff37bd0f09349319dddf8944 100644 --- a/apps/BOB/src/net/i2p/BOB/Lifted.java +++ b/apps/BOB/src/net/i2p/BOB/Lifted.java @@ -15,7 +15,7 @@ */ package net.i2p.BOB; -import java.util.Enumeration; +import java.util.Map; import java.util.Properties; /** @@ -39,10 +39,8 @@ public class Lifted { * **/ public static void copyProperties(Properties src_prop, Properties dest_prop) { - for (Enumeration propertyNames = src_prop.propertyNames(); - propertyNames.hasMoreElements();) { - Object key = propertyNames.nextElement(); - dest_prop.put(key, src_prop.get(key)); + for (Map.Entry<Object, Object> e : src_prop.entrySet()) { + dest_prop.put((String)e.getKey(), (String)e.getValue()); } } }