Searches this HashSet for the specified object. @param object the object to search for. @return true if object is an element of this HashSet, false otherwise.
(Object object)
| 131 | * {@code HashSet}, {@code false} otherwise. |
| 132 | */ |
| 133 | @Override |
| 134 | public boolean contains(Object object) { |
| 135 | return backingMap.containsKey(object); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Returns true if this {@code HashSet} has no elements, false otherwise. |
nothing calls this directly
no test coverage detected