diff --git a/src/java/com/threerings/presents/dobj/DSet.java b/src/java/com/threerings/presents/dobj/DSet.java index 01d05fe9c..ecf2ce9a0 100644 --- a/src/java/com/threerings/presents/dobj/DSet.java +++ b/src/java/com/threerings/presents/dobj/DSet.java @@ -75,6 +75,9 @@ public class DSet */ public static class KeyWrapper> implements DSet.Entry { + // Zero arg constructor for unserialization + public KeyWrapper () { } + public KeyWrapper (T key) { _key = key; }