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:
Dave Hoover
2009-05-23 02:00:23 +00:00
parent 3c5c5e6ba5
commit cf1ad4ac4d
12 changed files with 43 additions and 45 deletions
@@ -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));
}
}