(String rawKey)
| 233 | } |
| 234 | |
| 235 | static Entry forRawLoneKey(String rawKey) { |
| 236 | checkNotNull(rawKey, "rawKey"); |
| 237 | return new Entry(rawKey, null, decode(rawKey), null); |
| 238 | } |
| 239 | |
| 240 | void appendToRawQueryStringBuilder(StringBuilder sb) { |
| 241 | sb.append(rawKey); |
no test coverage detected