These are all final.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5962 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2009-09-17 21:58:30 +00:00
parent f9bc385c99
commit 53f1dff95d
@@ -29,8 +29,12 @@ import com.threerings.io.Translations;
import com.threerings.io.TypedArray;
import com.threerings.util.ClassUtil;
import com.threerings.util.Enum;
import com.threerings.util.Byte;
import com.threerings.util.Float;
import com.threerings.util.Integer;
import com.threerings.util.Log;
import com.threerings.util.Long;
import com.threerings.util.Short;
import com.threerings.util.langBoolean;
/**
@@ -151,7 +155,8 @@ public class ArrayStreamer extends Streamer
protected static function isFinal (type :Class) :Boolean
{
if (type === String || type === Integer || type === langBoolean) {
if (type === String || type == Byte || type == Short || type === Integer ||
type == Float || type == Long || type === langBoolean) {
return true;
}