Removed @Override on interface methods.
the deployment build must be using stricter options (need to find them so I can replicate these issues locally in the future) git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5026 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -21,12 +21,12 @@ public class BureauDirector extends BasicDirector
|
||||
registerReceiver(new BureauDecoder(this));
|
||||
}
|
||||
|
||||
@Override // inherited documentation
|
||||
// from BureauReceiver
|
||||
public void createAgent (ClientObject client, int agentId)
|
||||
{
|
||||
}
|
||||
|
||||
@Override // inherited documentation
|
||||
// from BureauReceiver
|
||||
public void destroyAgent (ClientObject client, int agentId)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -77,20 +77,20 @@ public class BureauRegistry
|
||||
// TODO: schedule a shutdown event for the bureau if this is the last agent
|
||||
}
|
||||
|
||||
@Override // inherited documentation
|
||||
// from BureauProvider
|
||||
public void bureauInitialized (ClientObject client, String bureauId)
|
||||
{
|
||||
// TODO: create pending agents
|
||||
// TODO: synchronization
|
||||
}
|
||||
|
||||
@Override // inherited documentation
|
||||
// from BureauProvider
|
||||
public void agentCreated (ClientObject client, int agentId)
|
||||
{
|
||||
// TODO: remove from pending
|
||||
}
|
||||
|
||||
@Override // inherited documentation
|
||||
// from BureauProvider
|
||||
public void agentDestroyed (ClientObject caller, int arg1)
|
||||
{
|
||||
// TODO: remove from pending destroyed
|
||||
|
||||
Reference in New Issue
Block a user