mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +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
|
||||
public int hashCode() {
|
||||
return 37 * variable.hashCode();
|
||||
return variable.hashCode();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue