Prune trailing whitespace & foreachize loops.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@840 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -36,8 +36,8 @@ public class ByteStringSetStat extends StringSetStat
|
||||
throws IOException
|
||||
{
|
||||
out.writeByte(_values.length);
|
||||
for (int ii = 0; ii < _values.length; ii++) {
|
||||
out.writeByte((byte)aux.getStringCode(_type, _values[ii]));
|
||||
for (String value : _values) {
|
||||
out.writeByte((byte)aux.getStringCode(_type, value));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user