(Object o)
| 62 | } |
| 63 | |
| 64 | @Override |
| 65 | public boolean equals(Object o) { |
| 66 | if (!(o instanceof Command)) { |
| 67 | return false; |
| 68 | } |
| 69 | |
| 70 | Command that = (Command) o; |
| 71 | return Objects.equals(this.sessionId, that.sessionId) |
| 72 | && Objects.equals(this.getName(), that.getName()) |
| 73 | && Objects.equals(this.getParameters(), that.getParameters()); |
| 74 | } |
| 75 | |
| 76 | @Override |
| 77 | public int hashCode() { |
no test coverage detected