summaryrefslogtreecommitdiff
path: root/st/AbstractInstance.java
diff options
context:
space:
mode:
Diffstat (limited to 'st/AbstractInstance.java')
-rw-r--r--st/AbstractInstance.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/st/AbstractInstance.java b/st/AbstractInstance.java
index 4e4287d..6db9d3c 100644
--- a/st/AbstractInstance.java
+++ b/st/AbstractInstance.java
@@ -18,7 +18,7 @@ public abstract class AbstractInstance {
return this.name;
}
- @Override public boolean equals(AbstractInstance other) {
+ public boolean equals(AbstractInstance other) {
return this.name == other.getName() &&
this.type == this.type;
}