Skip to content

Commit 4411cac

Browse files
committed
Small improvement
1 parent 344ebd1 commit 4411cac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgpack-jackson/src/main/java/org/msgpack/jackson/dataformat/MessagePackParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ public String getText()
398398
case BIG_INT:
399399
return String.valueOf(biValue);
400400
case EXT:
401-
return new String(extensionTypeValue.getData());
401+
return getExtensionTypeValue().toString();
402402
default:
403403
throw new IllegalStateException("Invalid type=" + type);
404404
}

0 commit comments

Comments
 (0)