ZOMG, Narya now perfectly passes our coding standards as enforced by

CheckStyle. The checks are slightly looser than I'd like but way better than
nothing and we get a bunch of other useful warnings like shadowed names and
other handy bits.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5253 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-22 14:36:54 +00:00
parent 5c4ab96880
commit 0a893e1de1
33 changed files with 159 additions and 124 deletions
@@ -34,8 +34,10 @@ import com.threerings.io.Streamable;
* in the map must also be of streamable types.
*
* @see Streamable
* @param <K> the type of key stored in this map.
* @param <V> the type of value stored in this map.
*/
public class StreamableHashMap<K,V> extends HashMap<K,V>
public class StreamableHashMap<K, V> extends HashMap<K, V>
implements Streamable
{
/**
@@ -64,7 +66,7 @@ public class StreamableHashMap<K,V> extends HashMap<K,V>
{
int ecount = size();
out.writeInt(ecount);
for (Map.Entry<K,V> entry : entrySet()) {
for (Map.Entry<K, V> entry : entrySet()) {
out.writeObject(entry.getKey());
out.writeObject(entry.getValue());
}