More type safety.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4244 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-07-05 00:51:22 +00:00
parent a89473d1b5
commit 94b79826d4
9 changed files with 59 additions and 54 deletions
@@ -70,7 +70,7 @@ public class ObjectOutputStream extends DataOutputStream
public void addTranslation (String className, String streamedName)
{
if (_translations == null) {
_translations = new HashMap();
_translations = new HashMap<String,String>();
}
_translations.put(className, streamedName);
}
@@ -90,12 +90,12 @@ public class ObjectOutputStream extends DataOutputStream
// create our classmap if necessary
if (_classmap == null) {
_classmap = new HashMap();
_classmap = new HashMap<Class,ClassMapping>();
}
// otherwise, look up the class mapping record
Class sclass = object.getClass();
ClassMapping cmap = (ClassMapping)_classmap.get(sclass);
ClassMapping cmap = _classmap.get(sclass);
// create a class mapping for this class if we've not got one
if (cmap == null) {
@@ -119,7 +119,7 @@ public class ObjectOutputStream extends DataOutputStream
writeShort(-cmap.code);
String cname = sclass.getName();
if (_translations != null) {
String tname = (String) _translations.get(cname);
String tname = _translations.get(cname);
if (tname != null) {
cname = tname;
}
@@ -191,7 +191,7 @@ public class ObjectOutputStream extends DataOutputStream
/** Used to map classes to numeric codes and the {@link Streamer}
* instance used to write them. */
protected HashMap _classmap;
protected HashMap<Class,ClassMapping> _classmap;
/** A counter used to assign codes to streamed classes. */
protected short _nextCode = 1;
@@ -204,5 +204,5 @@ public class ObjectOutputStream extends DataOutputStream
/** An optional set of class name translations to use when serializing
* objects. */
protected HashMap _translations;
protected HashMap<String,String> _translations;
}