(@SuppressWarnings("unused")
K key, @SuppressWarnings("unused")
V value)
| 536 | /// if the key or value is `null` and this Map does not |
| 537 | /// support `null` keys or values. |
| 538 | public V put(@SuppressWarnings("unused") |
| 539 | K key, @SuppressWarnings("unused") |
| 540 | V value) { |
| 541 | throw new UnsupportedOperationException(); |
| 542 | } |
| 543 | |
| 544 | /// Copies every mapping in the specified map to this map. |
| 545 | /// |