Fix use of raw type.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5550 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-11-14 03:12:33 +00:00
parent 79f5a17600
commit 40e9394817
@@ -241,7 +241,7 @@ public class BasicStreamers
public void writeObject (Object object, ObjectOutputStream out, boolean useWriter)
throws IOException
{
out.writeClassMapping((Class)object);
out.writeClassMapping((Class<?>)object);
}
}