You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/07/08 17:34:42 UTC

commons-dbcp git commit: Use Java's own Arrays.asList() method.

Repository: commons-dbcp
Updated Branches:
  refs/heads/master 1b6ead19c -> 3118343d4


Use Java's own Arrays.asList() method.

Project: http://git-wip-us.apache.org/repos/asf/commons-dbcp/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbcp/commit/3118343d
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbcp/tree/3118343d
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbcp/diff/3118343d

Branch: refs/heads/master
Commit: 3118343d4ed0c932838acb0f733cf67435653b79
Parents: 1b6ead1
Author: Gary Gregory <ga...@gmail.com>
Authored: Sun Jul 8 11:34:39 2018 -0600
Committer: Gary Gregory <ga...@gmail.com>
Committed: Sun Jul 8 11:34:39 2018 -0600

----------------------------------------------------------------------
 src/test/java/org/apache/commons/dbcp2/TestListException.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/3118343d/src/test/java/org/apache/commons/dbcp2/TestListException.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/dbcp2/TestListException.java b/src/test/java/org/apache/commons/dbcp2/TestListException.java
index de24e8f..07ab198 100644
--- a/src/test/java/org/apache/commons/dbcp2/TestListException.java
+++ b/src/test/java/org/apache/commons/dbcp2/TestListException.java
@@ -21,12 +21,11 @@ import static org.junit.Assert.assertArrayEquals;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNull;
 
+import java.util.Arrays;
 import java.util.List;
 
 import org.junit.Test;
 
-import edu.emory.mathcs.backport.java.util.Arrays;
-
 /**
  * Tests for ListException.
  */