Use jdk1.5 notation to do away with the array type prototypes.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4335 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-08-21 21:50:24 +00:00
parent e597ecb14f
commit d57d213904
4 changed files with 18 additions and 28 deletions
@@ -41,15 +41,15 @@ public class BasicStreamers
Float.class,
Double.class,
String.class,
(new boolean[0]).getClass(),
(new byte[0]).getClass(),
(new short[0]).getClass(),
(new char[0]).getClass(),
(new int[0]).getClass(),
(new long[0]).getClass(),
(new float[0]).getClass(),
(new double[0]).getClass(),
(new Object[0]).getClass(),
boolean[].class,
byte[].class,
short[].class,
char[].class,
int[].class,
long[].class,
float[].class,
double[].class,
Object[].class,
};
/** An array of instances of all of the basic streamers. */