(final Object other)
| 140 | } |
| 141 | |
| 142 | @Override |
| 143 | public boolean equals(final Object other) { |
| 144 | if (other == null || !(other instanceof SingletonList)) { |
| 145 | return false; |
| 146 | } |
| 147 | return element.equals(((SingletonList) other).element); |
| 148 | } |
| 149 | |
| 150 | @Override |
| 151 | public int hashCode() { |
no outgoing calls
no test coverage detected