google-collect upgrade

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5745 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Charlie Groves
2009-04-24 23:01:40 +00:00
parent 510ddbb717
commit 749ab8e1bb
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -463,7 +463,7 @@ public class Streamer
// reflect on all the object's fields and remove all marked with NotStreamable
List<Field> fields = Lists.newArrayList();
ClassUtil.getFields(target, fields);
_fields = Iterables.newArray(Iterables.filter(fields, _isStreamableFieldPred), Field.class);
_fields = Iterables.toArray(Iterables.filter(fields, _isStreamableFieldPred), Field.class);
int fcount = _fields.length;
// obtain field marshallers for all of our fields