(Prop<Q> p, Q v)
| 344 | |
| 345 | // typing issues with javac, no need for this additional <V> |
| 346 | public <Q, V> Prop<V> set(Prop<Q> p, Q v) { |
| 347 | getAttributes().put(p, v); |
| 348 | return (Prop<V>) this; |
| 349 | } |
| 350 | |
| 351 | public <V> Prop<V> set(Prop<Boolean> m) { |
| 352 | getAttributes().put(m, true); |
nothing calls this directly
no test coverage detected