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:
@@ -32,5 +32,5 @@ public interface BodyProvider extends InvocationProvider
|
||||
/**
|
||||
* Handles a {@link BodyService#setIdle} request.
|
||||
*/
|
||||
public void setIdle (ClientObject caller, boolean arg1);
|
||||
void setIdle (ClientObject caller, boolean arg1);
|
||||
}
|
||||
|
||||
@@ -25,22 +25,16 @@ import com.google.inject.Guice;
|
||||
import com.google.inject.Inject;
|
||||
import com.google.inject.Injector;
|
||||
import com.google.inject.Singleton;
|
||||
import com.samskivert.util.Invoker;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
|
||||
import com.threerings.presents.net.AuthRequest;
|
||||
import com.threerings.presents.server.ClientFactory;
|
||||
import com.threerings.presents.server.ClientManager;
|
||||
import com.threerings.presents.server.ClientResolver;
|
||||
import com.threerings.presents.server.InvocationManager;
|
||||
import com.threerings.presents.server.PresentsClient;
|
||||
import com.threerings.presents.server.PresentsDObjectMgr;
|
||||
import com.threerings.presents.server.PresentsServer;
|
||||
import com.threerings.presents.server.net.ConnectionManager;
|
||||
|
||||
import com.threerings.crowd.chat.server.ChatProvider;
|
||||
import com.threerings.crowd.data.BodyObject;
|
||||
|
||||
import static com.threerings.crowd.Log.log;
|
||||
|
||||
|
||||
@@ -34,11 +34,11 @@ public interface LocationProvider extends InvocationProvider
|
||||
/**
|
||||
* Handles a {@link LocationService#leavePlace} request.
|
||||
*/
|
||||
public void leavePlace (ClientObject caller);
|
||||
void leavePlace (ClientObject caller);
|
||||
|
||||
/**
|
||||
* Handles a {@link LocationService#moveTo} request.
|
||||
*/
|
||||
public void moveTo (ClientObject caller, int arg1, LocationService.MoveListener arg2)
|
||||
void moveTo (ClientObject caller, int arg1, LocationService.MoveListener arg2)
|
||||
throws InvocationException;
|
||||
}
|
||||
|
||||
@@ -21,7 +21,6 @@
|
||||
|
||||
package com.threerings.crowd.server;
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user