(K key)
| 413 | } |
| 414 | |
| 415 | public void insert(K key) { |
| 416 | synchronized (this) { |
| 417 | if (hasRecord(key)) { |
| 418 | return; |
| 419 | } |
| 420 | Object[] rec = new Object[fields.length]; |
| 421 | records.put(key, rec); |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | public Object[] delete(K key) { |
| 426 | synchronized (this) { |
no test coverage detected