Add in @Overrides across the board, clean up the comments around them some, and remove

unneeded imports.
I've got partially completed patches for narya & vilya, too, but nenya was the 
only one that wound up in a decent state after a friday evening puttering at it,
killing time waiting on other things to finish.


git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@572 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Dave Hoover
2008-07-14 18:19:23 +00:00
parent 1df0737bf7
commit 5f1eed7b94
137 changed files with 394 additions and 433 deletions
@@ -21,7 +21,6 @@
package com.threerings.cast;
import java.awt.Color;
import java.io.Serializable;
import com.samskivert.util.ArrayIntSet;
@@ -95,7 +94,7 @@ public class ComponentClass implements Serializable
return priority;
}
/** Generates a string representation of this instance. */
@Override
public String toString ()
{
return "[pri=" + renderPriority + ", action=" + action +
@@ -196,6 +195,7 @@ public class ComponentClass implements Serializable
/**
* Classes with the same name are the same.
*/
@Override
public boolean equals (Object other)
{
if (other instanceof ComponentClass) {
@@ -208,14 +208,13 @@ public class ComponentClass implements Serializable
/**
* Hashcode is based on component class name.
*/
@Override
public int hashCode ()
{
return name.hashCode();
}
/**
* Returns a string representation of this component class.
*/
@Override
public String toString ()
{
StringBuilder buf = new StringBuilder("[");