diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-23 15:04:43 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-23 15:04:43 -0600 |
commit | 1cbc6acab2c1bd745649a639db023b0f6c87f821 (patch) | |
tree | cccc43f8849c00cf6d90806156e9a8c918a08248 /st/AbstractInstance.java | |
parent | df648047d1899345dd8b2d82f78b480712d4d8d6 (diff) |
Cleanup BoilSimp -> BoilVisitor
Diffstat (limited to 'st/AbstractInstance.java')
-rw-r--r-- | st/AbstractInstance.java | 2 |
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; } |