Fix recently introduced error where int values could not be written out as objects, particularly problematic for generic containers like StreamableHashMap. This was causing the creation of tables to fail for any game with a "range" custom parameter. There is likely a better fix for this, but this will do until we think of it.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5617 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -63,5 +63,7 @@ public class Translations
|
||||
addTranslation("com.threerings.util.Float", "java.lang.Float");
|
||||
addTranslation("Array", "[Ljava.lang.Object;");
|
||||
addTranslation("flash.utils.ByteArray", "[B");
|
||||
addTranslation("int", "java.lang.Double"); // we'd rather not have this one
|
||||
addTranslation("Number", "java.lang.Double");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user