remove unnecessary casts (eclipse)

This commit is contained in:
zzz
2012-03-25 20:42:41 +00:00
parent ed13424913
commit 3e889d2747
59 changed files with 141 additions and 141 deletions

View File

@@ -521,7 +521,7 @@ public class Rate {
*/
@Override
public int hashCode() {
return DataHelper.hashCode(_stat) ^ ((int)_period) ^ ((int) _creationDate);
return DataHelper.hashCode(_stat) ^ _period ^ ((int) _creationDate);
}
@Override