Skip to content

Commit

Permalink
TIKA-4290 Attempt to fix error "String.format() was called with 1 arg… (
Browse files Browse the repository at this point in the history
#1873)

TIKA-4290: Attempt to fix error "String.format() was called with 1 arg, but expects none"
  • Loading branch information
dk2k committed Aug 4, 2024
1 parent 205879c commit c7c470d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public StreamObjectHeaderEnd16bit(int type) throws TikaException {
this.type = StreamObjectTypeHeaderEnd.fromIntVal(type);
if (this.type == null) {
throw new TikaException(String.format(Locale.US,
"The type value RuntimeException is not defined for the stream object end 16-bit header",
"The type value %d is not defined for the stream object end 16-bit header",
type));
}

Expand Down

0 comments on commit c7c470d

Please sign in to comment.