(Attributes base)
| 220 | private IdentityHashMap<Key<?>, Object> newdata; |
| 221 | |
| 222 | private Builder(Attributes base) { |
| 223 | assert base != null; |
| 224 | this.base = base; |
| 225 | } |
| 226 | |
| 227 | private IdentityHashMap<Key<?>, Object> data(int size) { |
| 228 | if (newdata == null) { |
nothing calls this directly
no outgoing calls
no test coverage detected