Fixed some unused variables, unused imports, type variable hiding, tricky

generic array type handling and other niggling bits.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5267 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-26 20:40:20 +00:00
parent 4fab6bb71a
commit 93fb7b01f7
11 changed files with 27 additions and 39 deletions
@@ -827,7 +827,7 @@ public class BlockingCommunicator extends Communicator
return false; // cancelled
} else if (resp > 0) {
DownstreamMessage msg = receiveDatagram();
receiveDatagram();
return true;
}
}
@@ -439,7 +439,7 @@ public class ClientDObjectMgr
for (Iterator<IntMap.IntEntry<FlushRecord>> iter = _flushes.intEntrySet().iterator();
iter.hasNext(); ) {
IntMap.IntEntry<FlushRecord> entry = iter.next();
int oid = entry.getIntKey();
// int oid = entry.getIntKey();
FlushRecord rec = entry.getValue();
if (rec.expire <= now) {
iter.remove();
@@ -154,7 +154,7 @@ public class InvocationDirector
log.warning("Receiver unregistered for which we have no id to code mapping " +
"[code=" + receiverCode + "].");
} else {
Object decoder = _receivers.remove(rreg.receiverId);
// Object decoder = _receivers.remove(rreg.receiverId);
// Log.info("Cleared receiver " + StringUtil.shortClassName(decoder) +
// " " + rreg + ".");
}
@@ -120,7 +120,6 @@ public class DynamicListener
*/
protected Method resolveMethod (String name, Object[] arguments)
{
Class clazz = _target.getClass();
Class[] ptypes = new Class[arguments.length];
for (int ii = 0; ii < arguments.length; ii++) {
ptypes[ii] = arguments[ii] == null ?
@@ -36,7 +36,6 @@ import com.samskivert.util.Throttle;
import com.threerings.util.Name;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.dobj.DEvent;
import com.threerings.presents.dobj.DObject;
@@ -21,7 +21,6 @@
package com.threerings.presents.server;
import com.google.inject.Inject;
import com.google.inject.Singleton;
@@ -737,7 +737,7 @@ public class ActionScriptSource
line = slurpUntil(bin, line, ";", false);
}
String fieldName = m.group(1);
// String fieldName = m.group(1);
// TODO: update the comment?
accum.setLength(0);
@@ -29,7 +29,6 @@ import java.lang.reflect.Modifier;
import java.util.ArrayList;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.DirectoryScanner;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.types.FileSet;