diff options
author | Sven Gothel <[email protected]> | 2011-02-26 18:10:07 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-26 18:10:07 +0100 |
commit | 45788d1f3264725ba2e2f31f4b56d492e265b67c (patch) | |
tree | 478184fe754f4858664f8b4bd62ea54c54d5ec3c | |
parent | 5cf4eeb334ac5390b0c681da0fb17db56a143395 (diff) |
cleanup imports
-rw-r--r-- | src/java/com/jogamp/common/util/ArrayHashSet.java | 2 | ||||
-rw-r--r-- | src/junit/com/jogamp/common/util/locks/TestRecursiveLock01.java | 7 |
2 files changed, 2 insertions, 7 deletions
diff --git a/src/java/com/jogamp/common/util/ArrayHashSet.java b/src/java/com/jogamp/common/util/ArrayHashSet.java index 0840cde..8266b50 100644 --- a/src/java/com/jogamp/common/util/ArrayHashSet.java +++ b/src/java/com/jogamp/common/util/ArrayHashSet.java @@ -34,6 +34,8 @@ import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.ListIterator; +import java.util.logging.Level; +import java.util.logging.Logger; /** * Hashed ArrayList implementation of the List and Collection interface. diff --git a/src/junit/com/jogamp/common/util/locks/TestRecursiveLock01.java b/src/junit/com/jogamp/common/util/locks/TestRecursiveLock01.java index ff55976..c847f5b 100644 --- a/src/junit/com/jogamp/common/util/locks/TestRecursiveLock01.java +++ b/src/junit/com/jogamp/common/util/locks/TestRecursiveLock01.java @@ -28,15 +28,8 @@ package com.jogamp.common.util.locks; -import com.jogamp.common.util.locks.RecursiveLock; -import java.lang.reflect.*; import java.io.IOException; -import org.junit.Assert; -import org.junit.Before; -import org.junit.BeforeClass; -import org.junit.After; -import org.junit.AfterClass; import org.junit.Test; public class TestRecursiveLock01 { |