You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2017/07/11 17:22:22 UTC

[32/50] [abbrv] commons-collections git commit: Standardize on US English spelling (recognised -> recognized.)

Standardize on US English spelling (recognised -> recognized.)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1744813 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/commit/2ce582ee
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/2ce582ee
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/2ce582ee

Branch: refs/heads/master
Commit: 2ce582ee66e1d25c2e3282a92f53d78ee2de157c
Parents: 6cdf7f9
Author: Gary D. Gregory <gg...@apache.org>
Authored: Fri May 20 23:37:45 2016 +0000
Committer: Gary D. Gregory <gg...@apache.org>
Committed: Fri May 20 23:37:45 2016 +0000

----------------------------------------------------------------------
 src/main/java/org/apache/commons/collections4/CollectionUtils.java | 2 +-
 .../commons/collections4/comparators/FixedOrderComparator.java     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/2ce582ee/src/main/java/org/apache/commons/collections4/CollectionUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/collections4/CollectionUtils.java b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
index 9a9bfdc..334f20d 100644
--- a/src/main/java/org/apache/commons/collections4/CollectionUtils.java
+++ b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
@@ -1364,7 +1364,7 @@ public class CollectionUtils {
      *
      * @param object  the object to get the size of, may be null
      * @return true if empty or null
-     * @throws IllegalArgumentException thrown if object is not recognised
+     * @throws IllegalArgumentException thrown if object is not recognized
      * @since 3.2
      */
     public static boolean sizeIsEmpty(final Object object) {

http://git-wip-us.apache.org/repos/asf/commons-collections/blob/2ce582ee/src/main/java/org/apache/commons/collections4/comparators/FixedOrderComparator.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/collections4/comparators/FixedOrderComparator.java b/src/main/java/org/apache/commons/collections4/comparators/FixedOrderComparator.java
index d852883..f9a4d7d 100644
--- a/src/main/java/org/apache/commons/collections4/comparators/FixedOrderComparator.java
+++ b/src/main/java/org/apache/commons/collections4/comparators/FixedOrderComparator.java
@@ -214,7 +214,7 @@ public class FixedOrderComparator<T> implements Comparator<T>, Serializable {
      * Compares two objects according to the order of this Comparator.
      * <p>
      * It is important to note that this class will throw an IllegalArgumentException
-     * in the case of an unrecognised object. This is not specified in the
+     * in the case of an unrecognized object. This is not specified in the
      * Comparator interface, but is the most appropriate exception.
      *
      * @param obj1  the first object to compare