This is an automated email from the ASF dual-hosted git repository.
jjramos pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 783ada8 GEODE-6042: Fix commons-lang import (#2842)
783ada8 is described below
commit 783ada84ca19067303cfc3fc29a530866ab3251d
Author: Juan José Ramos <[email protected]>
AuthorDate: Tue Nov 13 15:51:43 2018 +0000
GEODE-6042: Fix commons-lang import (#2842)
- VMProvider now imports the correct commons-lang version.
---
.../src/main/java/org/apache/geode/test/junit/rules/VMProvider.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/geode-dunit/src/main/java/org/apache/geode/test/junit/rules/VMProvider.java
b/geode-dunit/src/main/java/org/apache/geode/test/junit/rules/VMProvider.java
index 9294f6f..b68699d 100644
---
a/geode-dunit/src/main/java/org/apache/geode/test/junit/rules/VMProvider.java
+++
b/geode-dunit/src/main/java/org/apache/geode/test/junit/rules/VMProvider.java
@@ -19,7 +19,7 @@ import java.io.File;
import java.util.Arrays;
import org.apache.commons.io.FileUtils;
-import org.apache.commons.lang.ArrayUtils;
+import org.apache.commons.lang3.ArrayUtils;
import org.apache.geode.test.dunit.AsyncInvocation;
import org.apache.geode.test.dunit.SerializableCallableIF;