(E k)
| 522 | } |
| 523 | |
| 524 | @Override |
| 525 | public boolean add(E k) { |
| 526 | if(hasValues) |
| 527 | throw new UnsupportedOperationException(); |
| 528 | else |
| 529 | return m.put(k, Boolean.TRUE ) == null; |
| 530 | } |
| 531 | |
| 532 | @Override |
| 533 | public void close() { |
no test coverage detected