Skip to content

Commit 2c58910

Browse files
committed
fix hashing for EolCollectionType
1 parent 0251242 commit 2c58910

File tree

1 file changed

+1
-1
lines changed
  • plugins/org.eclipse.epsilon.eol.engine/src/org/eclipse/epsilon/eol/staticanalyser/types

1 file changed

+1
-1
lines changed

plugins/org.eclipse.epsilon.eol.engine/src/org/eclipse/epsilon/eol/staticanalyser/types/EolType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public String toString() {
3333

3434
@Override
3535
public int hashCode() {
36-
return Objects.hash(getName());
36+
return Objects.hash(toString());
3737
}
3838

3939
@Override

0 commit comments

Comments
 (0)