add @Override to getReceiverCode and dispatchNotification so running genreceiver doesn't step all over Dave's auto @Override adder

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4708 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Charlie Groves
2007-05-11 18:54:25 +00:00
parent 01b43deb6e
commit d9eaa65c23
@@ -27,13 +27,13 @@ public class ${name}Decoder extends InvocationDecoder
this.receiver = receiver; this.receiver = receiver;
} }
// documentation inherited @Override // documentation inherited
public String getReceiverCode () public String getReceiverCode ()
{ {
return RECEIVER_CODE; return RECEIVER_CODE;
} }
// documentation inherited @Override // documentation inherited
public void dispatchNotification (int methodId, Object[] args) public void dispatchNotification (int methodId, Object[] args)
{ {
switch (methodId) { switch (methodId) {