Instructions: bug fix
Change-Id: Iaee3baaa9545a3ce61d7d6cacec125cb1249b346
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -200,7 +200,7 @@ public final class Instructions { | ... | @@ -200,7 +200,7 @@ public final class Instructions { |
200 | } | 200 | } |
201 | if (obj instanceof OutputInstruction) { | 201 | if (obj instanceof OutputInstruction) { |
202 | OutputInstruction that = (OutputInstruction) obj; | 202 | OutputInstruction that = (OutputInstruction) obj; |
203 | - Objects.equals(port, that.port); | 203 | + return Objects.equals(port, that.port); |
204 | 204 | ||
205 | } | 205 | } |
206 | return false; | 206 | return false; | ... | ... |
-
Please register or login to post a comment