-
Bug
-
Resolution: Fixed
-
Major
-
None
-
Platform: All, OS: All
org.hudson.trayapp.actions.FileExecutor defines equals() but not hashCode().
If you don't think instances of this class will ever be inserted into a
HashMap/HashTable, the recommended hashCode implementation to use is:
public int hashCode()
{ assert false : "hashCode not designed"; return 42; // any arbitrary constant will do }