Skip to content

Commit 090b936

Browse files
committed
Message: Remove unnecessary Latin acronym
1 parent e5bf9c7 commit 090b936

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
public abstract class AbstractConverter<D> implements Converter<D> {
5353

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ private <T> T toDate(final Class<T> type, final String value) {
627627
final String msg = toString(getClass()) + " does not support default String to '" + toString(type) + "' conversion.";
628628
if (log().isWarnEnabled()) {
629629
log().warn(" " + msg);
630-
log().warn(" (N.B. Re-configure Converter or use alternative implementation)");
630+
log().warn(" (Re-configure Converter or use alternative implementation)");
631631
}
632632
throw new ConversionException(msg);
633633
}

0 commit comments

Comments
 (0)