(String debugString, T defaultValue)
| 328 | private final T defaultValue; |
| 329 | |
| 330 | private Key(String debugString, T defaultValue) { |
| 331 | this.debugString = debugString; |
| 332 | this.defaultValue = defaultValue; |
| 333 | } |
| 334 | |
| 335 | /** |
| 336 | * Returns the user supplied default value for this key. |
nothing calls this directly
no outgoing calls
no test coverage detected