We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7867272 commit ae2b4f9Copy full SHA for ae2b4f9
protobuf/src/main/java/tools/jackson/dataformat/protobuf/ProtobufParser.java
@@ -495,7 +495,7 @@ public JsonToken nextToken() throws JacksonException
495
System.out.println("nextToken(): state="+_state+", ptr="+_inputPtr);
496
JsonToken t = nextTokenX();
497
if (t == JsonToken.PROPERTY_NAME) {
498
- System.out.print(" Field name: "+currentName());
+ System.out.print(" Name: "+currentName());
499
} else if (t == JsonToken.VALUE_NUMBER_INT) {
500
System.out.print(" Int: "+getIntValue());
501
} else if (t == JsonToken.VALUE_STRING) {
0 commit comments