(IdentityHashMap<Key<?>, Object> data)
| 53 | public static final Attributes EMPTY = new Attributes(EMPTY_MAP); |
| 54 | |
| 55 | private Attributes(IdentityHashMap<Key<?>, Object> data) { |
| 56 | assert data != null; |
| 57 | this.data = data; |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Gets the value for the key, or {@code null} if it's not present. |
nothing calls this directly
no outgoing calls
no test coverage detected