mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-13 06:17:46 +01:00
adjusted hashcode
This commit is contained in:
parent
5c7a82ab8d
commit
1e0a80f9a8
@ -356,8 +356,8 @@ public class ResConfigFlags {
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 3;
|
||||
hash = 97 * hash + this.mQualifiers.hashCode();
|
||||
int hash = 17;
|
||||
hash = 31 * hash + this.mQualifiers.hashCode();
|
||||
return hash;
|
||||
}
|
||||
|
||||
|
@ -48,8 +48,8 @@ public class ResID {
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 7;
|
||||
hash = 59 * hash + this.id;
|
||||
int hash = 17;
|
||||
hash = 31 * hash + this.id;
|
||||
return hash;
|
||||
}
|
||||
|
||||
|
@ -205,9 +205,9 @@ public class ResPackage {
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 7;
|
||||
hash = 37 * hash + (this.mResTable != null ? this.mResTable.hashCode() : 0);
|
||||
hash = 37 * hash + this.mId;
|
||||
int hash = 17;
|
||||
hash = 31 * hash + (this.mResTable != null ? this.mResTable.hashCode() : 0);
|
||||
hash = 31 * hash + this.mId;
|
||||
return hash;
|
||||
}
|
||||
|
||||
|
@ -82,9 +82,9 @@ public class ResValuesFile {
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 5;
|
||||
hash = 37 * hash + (this.mType != null ? this.mType.hashCode() : 0);
|
||||
hash = 37 * hash + (this.mConfig != null ? this.mConfig.hashCode() : 0);
|
||||
int hash = 17;
|
||||
hash = 31 * hash + (this.mType != null ? this.mType.hashCode() : 0);
|
||||
hash = 31 * hash + (this.mConfig != null ? this.mConfig.hashCode() : 0);
|
||||
return hash;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user