Author: centic
Date: Mon Jan 30 12:19:43 2023
New Revision: 1907110
URL: http://svn.apache.org/viewvc?rev=1907110&view=rev
Log:
Spotbugs: Replace \n with %n in String.format()
Modified:
poi/trunk/poi/src/main/java/org/apache/poi/util/IOUtils.java
Modified: poi/trunk/poi/src/main/java/org/apache/poi/util/IOUtils.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/util/IOUtils.java?rev=1907110&r1=1907109&r2=1907110&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/util/IOUtils.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/util/IOUtils.java Mon Jan 30
12:19:43 2023
@@ -597,17 +597,17 @@ public final class IOUtils {
private static void throwRFE(long length, int maxLength) {
throw new RecordFormatException(String.format(Locale.ROOT, "Tried to
allocate an array of length %,d" +
- ", but the maximum length for this record type is
%,d.\n" +
- "If the file is not corrupt and not large, please open
an issue on bugzilla to request \n" +
- "increasing the maximum allowable size for this record
type.\n"+
+ ", but the maximum length for this record type is
%,d.%n" +
+ "If the file is not corrupt and not large, please open
an issue on bugzilla to request %n" +
+ "increasing the maximum allowable size for this record
type.%n"+
"You can set a higher override value with
IOUtils.setByteArrayMaxOverride()", length, maxLength));
}
private static void throwRecordTruncationException(final int maxLength) {
throw new RecordFormatException(String.format(Locale.ROOT, "Tried to
read data but the maximum length " +
- "for this record type is %,d.\n" +
- "If the file is not corrupt and not large, please open an
issue on bugzilla to request \n" +
- "increasing the maximum allowable size for this record
type.\n"+
+ "for this record type is %,d.%n" +
+ "If the file is not corrupt and not large, please open an
issue on bugzilla to request %n" +
+ "increasing the maximum allowable size for this record
type.%n"+
"You can set a higher override value with
IOUtils.setByteArrayMaxOverride()", maxLength));
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]