diff --git a/src/java/com/threerings/util/StreamableHashIntMap.java b/src/java/com/threerings/util/StreamableHashIntMap.java index d287e1282..fd63f39fe 100644 --- a/src/java/com/threerings/util/StreamableHashIntMap.java +++ b/src/java/com/threerings/util/StreamableHashIntMap.java @@ -36,7 +36,7 @@ import com.threerings.io.Streamable; * @see Streamable * @param the type of value stored in this map. */ -public class StreamableHashIntMap extends HashIntMap +public class StreamableHashIntMap extends HashIntMap implements Streamable { /** diff --git a/src/java/com/threerings/util/StreamableHashMap.java b/src/java/com/threerings/util/StreamableHashMap.java index c97363f81..0860f6917 100644 --- a/src/java/com/threerings/util/StreamableHashMap.java +++ b/src/java/com/threerings/util/StreamableHashMap.java @@ -38,13 +38,13 @@ import com.threerings.io.Streamable; * @param the type of key stored in this map. * @param the type of value stored in this map. */ -public class StreamableHashMap extends HashMap +public class StreamableHashMap extends HashMap implements Streamable { /** * Creates an empty StreamableHashMap. */ - public static StreamableHashMap newMap () + public static StreamableHashMap newMap () { return new StreamableHashMap(); } @@ -52,7 +52,8 @@ public class StreamableHashMap extends HashMap /** * Creates StreamableHashMap populated with the same values as the provided Map. */ - public static StreamableHashMap newMap (Map map) + public static StreamableHashMap newMap ( + Map map) { return new StreamableHashMap(map); }