Skip to content

Commit

Permalink
Merge branch 'hotfix/1.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
caseif committed Mar 27, 2018
2 parents 6394018 + 8e06a76 commit 109e0ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ defaultTasks 'clean', 'licenseFormat', 'build'
// Project information
allprojects {
group = 'blue.lapis.nocturne'
version = '1.1.1'
version = '1.1.2'

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,12 @@ public Map<MethodSignature, MethodSignature> getCurrentMethods() {

@Override
public boolean equals(Object otherObject) {
return otherObject instanceof JarClassEntry && hashCode() == otherObject.hashCode();
return otherObject instanceof JarClassEntry && getName().equals(((JarClassEntry) otherObject).getName());
}

@Override
public int hashCode() {
return Objects.hash(getName());
return Objects.hash(JarClassEntry.class, getName());
}

private static void showDecompileDialog() {
Expand Down

0 comments on commit 109e0ef

Please sign in to comment.