And finally, narya gets the imports/overrides/regen love.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5241 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2008-07-18 23:20:17 +00:00
parent e41dda3018
commit 6b1d65553f
129 changed files with 383 additions and 304 deletions
@@ -403,9 +403,7 @@ public class MessageBundle
}
}
/**
* Returns a string representation of this instance.
*/
@Override
public String toString ()
{
return "[bundle=" + _bundle + ", path=" + _path + "]";
+3 -4
View File
@@ -21,8 +21,6 @@
package com.threerings.util;
import java.util.regex.Pattern;
import com.threerings.io.SimpleStreamableObject;
/**
@@ -99,18 +97,19 @@ public class Name extends SimpleStreamableObject
/**
* Returns the unprocessed name as a string.
*/
@Override
public String toString ()
{
return _name;
}
@Override // from Object
@Override
public int hashCode ()
{
return getNormal().hashCode();
}
@Override // from Object
@Override
public boolean equals (Object other)
{
if (other != null) {
@@ -44,7 +44,7 @@ public class TrackedObject
incrementInstanceCount();
}
// documentation inherited
@Override
protected Object clone ()
throws CloneNotSupportedException
{
@@ -67,6 +67,7 @@ public class TrackedObject
}
/** Records that this object was collected. */
@Override
protected void finalize ()
throws Throwable
{
@@ -171,6 +171,7 @@ public class SignalManager
// make sure the signal dispatcher thread is started
if (_haveLibrary && _sigdis == null) {
_sigdis = new Thread("SignalDispatcher") {
@Override
public void run () {
log.info("Dispatching signals...");
dispatchSignals();