(Object o)
| 16 | } |
| 17 | |
| 18 | @Override |
| 19 | public boolean equals(Object o) { |
| 20 | if (this == o) return true; |
| 21 | if (!(o instanceof Action)) return false; |
| 22 | Action action = (Action) o; |
| 23 | return description.equals(action.description); |
| 24 | } |
| 25 | |
| 26 | @Override |
| 27 | public int hashCode() { |
no outgoing calls
no test coverage detected