[LANG-1507] Add ComparableUtils #398.

Repackage. Another class is coming here soon.
This commit is contained in:
Gary Gregory 2019-12-31 22:06:18 -05:00
parent 1dcf141f7c
commit a14ee65d14
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;