a better hashCode for stub hierarchy symbols

This commit is contained in:
peter
2016-06-08 19:25:52 +02:00
parent 64bb211eae
commit 13f042f26d
@@ -39,6 +39,11 @@ public abstract class Symbol {
this.myShortName = name;
}
@Override
public int hashCode() {
return myShortName;
}
public ClassSymbol[] members() {
return ClassSymbol.EMPTY_ARRAY;
}