aboutsummaryrefslogtreecommitdiff
path: root/src/test/java
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2020-06-17 16:53:15 -0400
committerGary Gregory <garydgregory@gmail.com>2020-06-17 16:53:15 -0400
commitfc686a48ef60a2282214a7102830f94cdcf16e2f (patch)
tree5f00df12e633c4745603ce88d6f2cae954266b05 /src/test/java
parent7ba418fc6f0b4e911a33c8e086a75a622a2ae09e (diff)
downloadapache-commons-lang-fc686a48ef60a2282214a7102830f94cdcf16e2f.tar.gz
We have a concurrent package, and JRE locks live in a similar package,
so let's put our new code in there.
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/org/apache/commons/lang3/concurrent/LocksTest.java (renamed from src/test/java/org/apache/commons/lang3/LocksTest.java)5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/java/org/apache/commons/lang3/LocksTest.java b/src/test/java/org/apache/commons/lang3/concurrent/LocksTest.java
index b3c805e3e..eaba4e93f 100644
--- a/src/test/java/org/apache/commons/lang3/LocksTest.java
+++ b/src/test/java/org/apache/commons/lang3/concurrent/LocksTest.java
@@ -14,13 +14,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.commons.lang3;
+package org.apache.commons.lang3.concurrent;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.function.LongConsumer;
-import org.apache.commons.lang3.Locks.Lock;
+import org.apache.commons.lang3.concurrent.Locks;
+import org.apache.commons.lang3.concurrent.Locks.Lock;
import org.apache.commons.lang3.function.FailableConsumer;
import org.junit.jupiter.api.Test;