Skip to content

Commit ae2b4f9

Browse files
committed
Minor test change
1 parent 7867272 commit ae2b4f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protobuf/src/main/java/tools/jackson/dataformat/protobuf/ProtobufParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ public JsonToken nextToken() throws JacksonException
495495
System.out.println("nextToken(): state="+_state+", ptr="+_inputPtr);
496496
JsonToken t = nextTokenX();
497497
if (t == JsonToken.PROPERTY_NAME) {
498-
System.out.print(" Field name: "+currentName());
498+
System.out.print(" Name: "+currentName());
499499
} else if (t == JsonToken.VALUE_NUMBER_INT) {
500500
System.out.print(" Int: "+getIntValue());
501501
} else if (t == JsonToken.VALUE_STRING) {

0 commit comments

Comments
 (0)