(String rawKey, @Nullable String rawValue, String key, @Nullable String value)
| 171 | @Nullable private final String value; |
| 172 | |
| 173 | private Entry(String rawKey, @Nullable String rawValue, String key, @Nullable String value) { |
| 174 | this.rawKey = checkNotNull(rawKey, "rawKey"); |
| 175 | this.rawValue = rawValue; |
| 176 | this.key = checkNotNull(key, "key"); |
| 177 | this.value = value; |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Returns the key. |
nothing calls this directly
no test coverage detected