diff --git a/src/java/com/threerings/admin/server/AdminDispatcher.java b/src/java/com/threerings/admin/server/AdminDispatcher.java index 2d58b6dca..f92db67dc 100644 --- a/src/java/com/threerings/admin/server/AdminDispatcher.java +++ b/src/java/com/threerings/admin/server/AdminDispatcher.java @@ -43,13 +43,14 @@ public class AdminDispatcher extends InvocationDispatcher this.provider = provider; } - // from InvocationDispatcher + @Override // documentation inherited public InvocationMarshaller createMarshaller () { return new AdminMarshaller(); } - @SuppressWarnings("unchecked") // from InvocationDispatcher + @SuppressWarnings("unchecked") + @Override // documentation inherited public void dispatchRequest ( ClientObject source, int methodId, Object[] args) throws InvocationException diff --git a/src/java/com/threerings/crowd/chat/server/ChatDispatcher.java b/src/java/com/threerings/crowd/chat/server/ChatDispatcher.java index 9fc92d692..cfa3c633d 100644 --- a/src/java/com/threerings/crowd/chat/server/ChatDispatcher.java +++ b/src/java/com/threerings/crowd/chat/server/ChatDispatcher.java @@ -45,13 +45,14 @@ public class ChatDispatcher extends InvocationDispatcher this.provider = provider; } - // from InvocationDispatcher + @Override // documentation inherited public InvocationMarshaller createMarshaller () { return new ChatMarshaller(); } - @SuppressWarnings("unchecked") // from InvocationDispatcher + @SuppressWarnings("unchecked") + @Override // documentation inherited public void dispatchRequest ( ClientObject source, int methodId, Object[] args) throws InvocationException diff --git a/src/java/com/threerings/crowd/chat/server/SpeakDispatcher.java b/src/java/com/threerings/crowd/chat/server/SpeakDispatcher.java index e4b4ee573..5cd74d650 100644 --- a/src/java/com/threerings/crowd/chat/server/SpeakDispatcher.java +++ b/src/java/com/threerings/crowd/chat/server/SpeakDispatcher.java @@ -43,13 +43,14 @@ public class SpeakDispatcher extends InvocationDispatcher this.provider = provider; } - // from InvocationDispatcher + @Override // documentation inherited public InvocationMarshaller createMarshaller () { return new SpeakMarshaller(); } - @SuppressWarnings("unchecked") // from InvocationDispatcher + @SuppressWarnings("unchecked") + @Override // documentation inherited public void dispatchRequest ( ClientObject source, int methodId, Object[] args) throws InvocationException diff --git a/src/java/com/threerings/crowd/peer/server/CrowdPeerDispatcher.java b/src/java/com/threerings/crowd/peer/server/CrowdPeerDispatcher.java index c0e461dac..5c1e698ac 100644 --- a/src/java/com/threerings/crowd/peer/server/CrowdPeerDispatcher.java +++ b/src/java/com/threerings/crowd/peer/server/CrowdPeerDispatcher.java @@ -47,13 +47,14 @@ public class CrowdPeerDispatcher extends InvocationDispatcher this.provider = provider; } - // from InvocationDispatcher + @Override // documentation inherited public InvocationMarshaller createMarshaller () { return new CrowdPeerMarshaller(); } - @SuppressWarnings("unchecked") // from InvocationDispatcher + @SuppressWarnings("unchecked") + @Override // documentation inherited public void dispatchRequest ( ClientObject source, int methodId, Object[] args) throws InvocationException diff --git a/src/java/com/threerings/crowd/server/BodyDispatcher.java b/src/java/com/threerings/crowd/server/BodyDispatcher.java index 34b893cc0..f3bba2072 100644 --- a/src/java/com/threerings/crowd/server/BodyDispatcher.java +++ b/src/java/com/threerings/crowd/server/BodyDispatcher.java @@ -43,13 +43,14 @@ public class BodyDispatcher extends InvocationDispatcher this.provider = provider; } - // from InvocationDispatcher + @Override // documentation inherited public InvocationMarshaller createMarshaller () { return new BodyMarshaller(); } - @SuppressWarnings("unchecked") // from InvocationDispatcher + @SuppressWarnings("unchecked") + @Override // documentation inherited public void dispatchRequest ( ClientObject source, int methodId, Object[] args) throws InvocationException diff --git a/src/java/com/threerings/crowd/server/LocationDispatcher.java b/src/java/com/threerings/crowd/server/LocationDispatcher.java index f7842ae60..89c717ae7 100644 --- a/src/java/com/threerings/crowd/server/LocationDispatcher.java +++ b/src/java/com/threerings/crowd/server/LocationDispatcher.java @@ -44,13 +44,14 @@ public class LocationDispatcher extends InvocationDispatcher this.provider = provider; } - // from InvocationDispatcher + @Override // documentation inherited public InvocationMarshaller createMarshaller () { return new LocationMarshaller(); } - @SuppressWarnings("unchecked") // from InvocationDispatcher + @SuppressWarnings("unchecked") + @Override // documentation inherited public void dispatchRequest ( ClientObject source, int methodId, Object[] args) throws InvocationException diff --git a/src/java/com/threerings/presents/server/TimeBaseDispatcher.java b/src/java/com/threerings/presents/server/TimeBaseDispatcher.java index dbf2818ef..0d51dc19e 100644 --- a/src/java/com/threerings/presents/server/TimeBaseDispatcher.java +++ b/src/java/com/threerings/presents/server/TimeBaseDispatcher.java @@ -42,13 +42,14 @@ public class TimeBaseDispatcher extends InvocationDispatcher this.provider = provider; } - // from InvocationDispatcher + @Override // documentation inherited public InvocationMarshaller createMarshaller () { return new TimeBaseMarshaller(); } - @SuppressWarnings("unchecked") // from InvocationDispatcher + @SuppressWarnings("unchecked") + @Override // documentation inherited public void dispatchRequest ( ClientObject source, int methodId, Object[] args) throws InvocationException