Remove unnecessary multiplication in DiscoverInfo.hashCode()

This commit is contained in:
Florian Schmaus 2014-10-31 18:02:45 +01:00
parent 5fb17dc85f
commit b60b20e312
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ public class DiscoverInfo extends IQ implements Cloneable {
@Override
public int hashCode() {
return 37 * variable.hashCode();
return variable.hashCode();
}
@Override