Remove some @Overrides that were for things that were implementing an interface method, not overriding a base class method - this is a 1.6ism.

Also, add some @Overrides that were missing on things that were overriding a base class method.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6570 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Mike Thomas
2011-03-31 18:28:32 +00:00
parent b42af5855f
commit af239ad733
3 changed files with 7 additions and 2 deletions
@@ -600,6 +600,7 @@ public abstract class Streamer
super.readObject(object, in, useReader);
}
@Override
protected void initMarshallers ()
{
// we will lazy-initialize the marshallers only if needed, so we don't call super
@@ -76,10 +76,10 @@ public class Resulting<T> extends Invoker.Unit
String name, final ResultListener<Q> chain, final Function<? super T, ? extends Q> xform)
{
this(name, new ResultListener<T>() {
@Override public void requestCompleted (T result) {
public void requestCompleted (T result) {
chain.requestCompleted(xform.apply(result));
}
@Override public void requestFailed (Exception cause) {
public void requestFailed (Exception cause) {
chain.requestFailed(cause);
}
});