1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-11 22:24:50 +02:00

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

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