Skip to content

Commit 5a3b2e3

Browse files
committed
Message: Remove unnecessary Latin acronym
1 parent a45b148 commit 5a3b2e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/apache/commons/beanutils/converters/AbstractConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public abstract class AbstractConverter implements Converter {
5757

5858
/** Debug logging message to indicate default value configuration */
5959
private static final String DEFAULT_CONFIG_MSG =
60-
"(N.B. Converters can be configured to use default values to avoid throwing exceptions)";
60+
"(Converters can be configured to use default values to avoid throwing exceptions)";
6161

6262
/** Current package name */
6363
// getPackage() below returns null on some platforms/jvm versions during the unit tests.

src/main/java/org/apache/commons/beanutils/converters/DateTimeConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ private <T> T toDate(final Class<T> type, final String value) {
578578
+ toString(type) + "' conversion.";
579579
if (log().isWarnEnabled()) {
580580
log().warn(" " + msg);
581-
log().warn(" (N.B. Re-configure Converter or use alternative implementation)");
581+
log().warn(" (Re-configure Converter or use alternative implementation)");
582582
}
583583
throw new ConversionException(msg);
584584
}

0 commit comments

Comments
 (0)