We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65c1086 commit 19ed7f6Copy full SHA for 19ed7f6
src/main/java/edu/uniandes/tsdl/mutapk/hashfunction/sha3/ApkHashSeparator.java
@@ -59,16 +59,12 @@ public int getMutanteId() {
59
60
@Override
61
public boolean equals(Object o) {
62
- if (o == this) {
63
- return true;
64
- }
65
if(o == null){
66
return false;
67
}
68
if (!(o instanceof ApkHashSeparator)) {
69
70
71
-
72
ApkHashSeparator apkHashseparator = (ApkHashSeparator) o;
73
return (hashManifest.equals(apkHashseparator.getHashManifest())
74
&& hashSmali.equals(apkHashseparator.getHashSmali())
0 commit comments