projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71da589
)
fix for ssJava: realized that annotation should not be a part of hash code.
author
yeom
<yeom>
Mon, 18 Apr 2011 22:24:08 +0000
(22:24 +0000)
committer
yeom
<yeom>
Mon, 18 Apr 2011 22:24:08 +0000
(22:24 +0000)
Robust/src/IR/TypeDescriptor.java
patch
|
blob
|
history
diff --git
a/Robust/src/IR/TypeDescriptor.java
b/Robust/src/IR/TypeDescriptor.java
index edf282446e53c29a02bc663c4aec5bcdee61b1cc..855345789a76f69727efd793c2f889d191fbc3ce 100644
(file)
--- a/
Robust/src/IR/TypeDescriptor.java
+++ b/
Robust/src/IR/TypeDescriptor.java
@@
-69,7
+69,6
@@
public class TypeDescriptor extends Descriptor {
public int hashCode() {
int hashcode=type^arraycount;
- hashcode+=annotationSet.hashCode();
if (type==CLASS)
hashcode^=getSymbol().hashCode();
return hashcode;