Google's Predicate is an interface, and the build server uses Java 5,

and you can't use @Override in java 5 when implementing an interface method.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5378 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2008-09-16 22:59:17 +00:00
parent be0849f17e
commit 1c711f493d
+1 -1
View File
@@ -521,7 +521,7 @@ public class Streamer
/** A simple predicate to filter "NotStreamable" members from a Streamable object's fields. */
protected static final Predicate<Field> _isStreamableFieldPred = new Predicate<Field>() {
@Override public boolean apply (Field obj) {
public boolean apply (Field obj) {
return (obj.getAnnotation(NotStreamable.class) == null);
}
};