mirror of
https://github.com/fankes/moshi.git
synced 2025-10-20 00:19:21 +08:00
Fix doc reference to Token. (#403)
JsonReader.Token is less redundant than Gson's JsonReader.JsonToken.
This commit is contained in:
@@ -120,7 +120,7 @@ import okio.ByteString;
|
||||
* id = reader.nextLong();
|
||||
* } else if (name.equals("text")) {
|
||||
* text = reader.nextString();
|
||||
* } else if (name.equals("geo") && reader.peek() != JsonToken.NULL) {
|
||||
* } else if (name.equals("geo") && reader.peek() != Token.NULL) {
|
||||
* geo = readDoublesArray(reader);
|
||||
* } else if (name.equals("user")) {
|
||||
* user = readUser(reader);
|
||||
|
Reference in New Issue
Block a user