Factory method for creating instances of Key. @param debugString a string used to describe the key, used for debugging. @param Key type @return Key object
(String debugString)
| 149 | * @return Key object |
| 150 | */ |
| 151 | public static <T> Key<T> create(String debugString) { |
| 152 | return new Key<>(debugString); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected