mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
Remove unnecessary multiplication in DiscoverInfo.hashCode()
This commit is contained in:
parent
5fb17dc85f
commit
b60b20e312
1 changed files with 1 additions and 1 deletions
|
@ -510,7 +510,7 @@ public class DiscoverInfo extends IQ implements Cloneable {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return 37 * variable.hashCode();
|
return variable.hashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue