Mark an override
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5276 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -522,7 +522,7 @@ public class Streamer
|
|||||||
|
|
||||||
/** A simple predicate to filter "NotStreamable" members from a Streamable object's fields. */
|
/** A simple predicate to filter "NotStreamable" members from a Streamable object's fields. */
|
||||||
protected static final Predicate<Field> _isStreamableFieldPred = new Predicate<Field>() {
|
protected static final Predicate<Field> _isStreamableFieldPred = new Predicate<Field>() {
|
||||||
public boolean isMatch (Field obj) {
|
@Override public boolean isMatch (Field obj) {
|
||||||
return (obj.getAnnotation(NotStreamable.class) == null);
|
return (obj.getAnnotation(NotStreamable.class) == null);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user