Moving N.B. to NOTE: to standardize that tag
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1089730 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
473359a5cc
commit
3b180e56c3
|
@ -136,7 +136,7 @@ public class ArrayUtils {
|
|||
}
|
||||
|
||||
|
||||
// N.B. Cannot use {@code} to enclose text which includes {}, but <code></code> is OK
|
||||
// NOTE: Cannot use {@code} to enclose text which includes {}, but <code></code> is OK
|
||||
|
||||
|
||||
// Basic methods handling multi-dimensional arrays
|
||||
|
|
|
@ -92,7 +92,7 @@ public class EqualsBuilder implements Builder<Boolean> {
|
|||
private static final ThreadLocal<Set<Pair<IDKey, IDKey>>> REGISTRY = new ThreadLocal<Set<Pair<IDKey, IDKey>>>();
|
||||
|
||||
/*
|
||||
* N.B. we cannot store the actual objects in a HashSet, as that would use the very hashCode()
|
||||
* NOTE: we cannot store the actual objects in a HashSet, as that would use the very hashCode()
|
||||
* we are in the process of calculating.
|
||||
*
|
||||
* So we generate a one-to-one mapping from the original object to a new object.
|
||||
|
|
|
@ -108,7 +108,7 @@ public class HashCodeBuilder implements Builder<Integer> {
|
|||
private static final ThreadLocal<Set<IDKey>> REGISTRY = new ThreadLocal<Set<IDKey>>();
|
||||
|
||||
/*
|
||||
* N.B. we cannot store the actual objects in a HashSet, as that would use the very hashCode()
|
||||
* NOTE: we cannot store the actual objects in a HashSet, as that would use the very hashCode()
|
||||
* we are in the process of calculating.
|
||||
*
|
||||
* So we generate a one-to-one mapping from the original object to a new object.
|
||||
|
|
|
@ -133,7 +133,7 @@ public class ExtendedMessageFormatTest extends TestCase {
|
|||
// /**
|
||||
// * Test extended formats with choice format.
|
||||
// *
|
||||
// * N.B. FAILING - currently sub-formats not supported
|
||||
// * NOTE: FAILING - currently sub-formats not supported
|
||||
// */
|
||||
// public void testExtendedWithChoiceFormat() {
|
||||
// String pattern = "Choice: {0,choice,1.0#{1,lower}|2.0#{1,upper}}";
|
||||
|
@ -150,7 +150,7 @@ public class ExtendedMessageFormatTest extends TestCase {
|
|||
// /**
|
||||
// * Test mixed extended and built-in formats with choice format.
|
||||
// *
|
||||
// * N.B. FAILING - currently sub-formats not supported
|
||||
// * NOTE: FAILING - currently sub-formats not supported
|
||||
// */
|
||||
// public void testExtendedAndBuiltInWithChoiceFormat() {
|
||||
// String pattern = "Choice: {0,choice,1.0#{0} {1,lower} {2,number}|2.0#{0} {1,upper} {2,number,currency}}";
|
||||
|
|
Loading…
Reference in New Issue