This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new a14ee65 [LANG-1507] Add ComparableUtils #398. a14ee65 is described below commit a14ee65d1484d6780ca46f8e0dfec679d09446ad Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Dec 31 22:06:18 2019 -0500 [LANG-1507] Add ComparableUtils #398. Repackage. Another class is coming here soon. --- .../java/org/apache/commons/lang3/{ => compare}/ComparableUtils.java | 2 +- .../org/apache/commons/lang3/{ => compare}/ComparableUtilsTest.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/ComparableUtils.java b/src/main/java/org/apache/commons/lang3/compare/ComparableUtils.java similarity index 99% rename from src/main/java/org/apache/commons/lang3/ComparableUtils.java rename to src/main/java/org/apache/commons/lang3/compare/ComparableUtils.java index 6a84a62..b7227cb 100644 --- a/src/main/java/org/apache/commons/lang3/ComparableUtils.java +++ b/src/main/java/org/apache/commons/lang3/compare/ComparableUtils.java @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.lang3; +package org.apache.commons.lang3.compare; import java.util.function.Predicate; diff --git a/src/test/java/org/apache/commons/lang3/ComparableUtilsTest.java b/src/test/java/org/apache/commons/lang3/compare/ComparableUtilsTest.java similarity index 98% rename from src/test/java/org/apache/commons/lang3/ComparableUtilsTest.java rename to src/test/java/org/apache/commons/lang3/compare/ComparableUtilsTest.java index 50ec33c..418b7bb 100644 --- a/src/test/java/org/apache/commons/lang3/ComparableUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/compare/ComparableUtilsTest.java @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.lang3; +package org.apache.commons.lang3.compare; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.DisplayNameGeneration; @@ -24,7 +24,7 @@ import org.junit.jupiter.api.Test; import java.math.BigDecimal; -import static org.apache.commons.lang3.ComparableUtils.is; +import static org.apache.commons.lang3.compare.ComparableUtils.is; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue;