Style fixes and import pruning. Beware, CheckStyle is (finally) coming to town.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5240 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -36,7 +36,6 @@ import com.google.inject.Injector;
|
||||
|
||||
import com.samskivert.jdbc.RepositoryUnit;
|
||||
import com.samskivert.jdbc.WriteOnlyUnit;
|
||||
import com.samskivert.jdbc.depot.PersistenceContext;
|
||||
import com.samskivert.util.ArrayIntSet;
|
||||
import com.samskivert.util.ChainedResultListener;
|
||||
import com.samskivert.util.Interval;
|
||||
|
||||
@@ -33,10 +33,10 @@ public interface PeerProvider extends InvocationProvider
|
||||
/**
|
||||
* Handles a {@link PeerService#invokeAction} request.
|
||||
*/
|
||||
public void invokeAction (ClientObject caller, byte[] arg1);
|
||||
void invokeAction (ClientObject caller, byte[] arg1);
|
||||
|
||||
/**
|
||||
* Handles a {@link PeerService#ratifyLockAction} request.
|
||||
*/
|
||||
public void ratifyLockAction (ClientObject caller, NodeObject.Lock arg1, boolean arg2);
|
||||
void ratifyLockAction (ClientObject caller, NodeObject.Lock arg1, boolean arg2);
|
||||
}
|
||||
|
||||
@@ -38,7 +38,6 @@ import com.samskivert.util.StringUtil;
|
||||
|
||||
import com.threerings.presents.client.InvocationDecoder;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.net.Transport;
|
||||
import com.threerings.presents.server.InvocationSender;
|
||||
|
||||
/**
|
||||
|
||||
@@ -39,7 +39,6 @@ import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
import com.threerings.presents.net.Transport;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
@@ -16,7 +16,7 @@ public interface ${name}Provider extends InvocationProvider
|
||||
/**
|
||||
* Handles a {@link ${name}Service#$m.method.name} request.
|
||||
*/
|
||||
public void $m.method.name (ClientObject caller#if ($m.hasArgs(true)), #end$m.getArgList(true))#if ($m.listenerArgs.size() > 0)
|
||||
void $m.method.name (ClientObject caller#if ($m.hasArgs(true)), #end$m.getArgList(true))#if ($m.listenerArgs.size() > 0)
|
||||
|
||||
throws InvocationException#end;
|
||||
#end
|
||||
|
||||
Reference in New Issue
Block a user