Got a little too excited about using 1.5 features and some slipped into
Narya. I added directives to the compile line to prevent that from happening again. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3247 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -69,7 +69,7 @@ public abstract class InvocationTask extends Task
|
||||
}
|
||||
|
||||
/** Used to keep track of invocation service methods. */
|
||||
public class ServiceMethod implements Comparable<ServiceMethod>
|
||||
public class ServiceMethod implements Comparable
|
||||
{
|
||||
public Method method;
|
||||
|
||||
@@ -154,9 +154,9 @@ public abstract class InvocationTask extends Task
|
||||
return (method.getParameterTypes().length > 1);
|
||||
}
|
||||
|
||||
public int compareTo (ServiceMethod other)
|
||||
public int compareTo (Object other)
|
||||
{
|
||||
return getCode().compareTo(other.getCode());
|
||||
return getCode().compareTo(((ServiceMethod)other).getCode());
|
||||
}
|
||||
|
||||
public String getUnwrappedArgList (boolean listenerMode)
|
||||
|
||||
Reference in New Issue
Block a user