(Prop<T> key, T value)
| 562 | |
| 563 | |
| 564 | public <T> Dict put(Prop<T> key, T value) { |
| 565 | if (value == null) return this; |
| 566 | |
| 567 | dictionary.put(key, value); |
| 568 | return this; |
| 569 | } |
| 570 | |
| 571 | /** |
| 572 | * returns a dict of the things displaced by putting this |
no outgoing calls
no test coverage detected