Explicitly handle the other cases of the enum in the switch so it's clear we mean to do nothing.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6540 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Mike Thomas
2011-03-18 21:41:42 +00:00
parent 30b04ce54e
commit c4a53bbbaa
@@ -266,6 +266,10 @@ public abstract class Streamer
return new ByteEnumStreamer(target);
}
break;
case NAME:
case ORDINAL:
// We explicitly do nothing here...
break;
}
switch (ENUM_POLICY) {