Author: ggregory
Date: Wed Oct 15 17:48:28 2014
New Revision: 1632139

URL: http://svn.apache.org/r1632139
Log:
Fix missing imports.

Modified:
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/CacheManagerTest.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/SafeCacheManagerTest.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/CacheFileDAOTest.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/FileContentTypeTest.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightApacheTest.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefCacheTest.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefFileCacheSafeTest.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/SerializeUtilsTest.java
    
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/TestSerializable.java

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/main/java/org/apache/commons/jcs/yajcache/file/CacheFileDAO.java
 Wed Oct 15 17:48:28 2014
@@ -19,15 +19,16 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
 import java.io.File;
 import java.io.IOException;
 import java.io.RandomAccessFile;
 import java.util.concurrent.atomic.AtomicInteger;
 
+import org.apache.commons.jcs.yajcache.lang.annotation.NonNullable;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
 
 /**
  * Cache File Data Access Object.

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/CacheManagerTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/CacheManagerTest.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/CacheManagerTest.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/CacheManagerTest.java
 Wed Oct 15 17:48:28 2014
@@ -19,7 +19,11 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
+
+import junit.framework.TestCase;
+
+import org.apache.commons.jcs.yajcache.lang.annotation.CopyRightApache;
+import org.apache.commons.jcs.yajcache.lang.annotation.TestOnly;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/SafeCacheManagerTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/SafeCacheManagerTest.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/SafeCacheManagerTest.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/core/SafeCacheManagerTest.java
 Wed Oct 15 17:48:28 2014
@@ -19,7 +19,10 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
+import junit.framework.TestCase;
+
+import org.apache.commons.jcs.yajcache.lang.annotation.CopyRightApache;
+import org.apache.commons.jcs.yajcache.lang.annotation.TestOnly;
 import org.apache.commons.jcs.yajcache.util.TestSerializable;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/CacheFileDAOTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/CacheFileDAOTest.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/CacheFileDAOTest.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/CacheFileDAOTest.java
 Wed Oct 15 17:48:28 2014
@@ -19,14 +19,17 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
 import java.io.File;
 import java.io.RandomAccessFile;
 import java.util.Arrays;
 
+import junit.framework.TestCase;
+
+import org.apache.commons.jcs.yajcache.lang.annotation.CopyRightApache;
+import org.apache.commons.jcs.yajcache.lang.annotation.TestOnly;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
 /**
  *
  * @author Hanson Char

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/FileContentTypeTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/FileContentTypeTest.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/FileContentTypeTest.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/file/FileContentTypeTest.java
 Wed Oct 15 17:48:28 2014
@@ -19,7 +19,10 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
+import junit.framework.TestCase;
+
+import org.apache.commons.jcs.yajcache.lang.annotation.CopyRightApache;
+import org.apache.commons.jcs.yajcache.lang.annotation.TestOnly;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightApacheTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightApacheTest.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightApacheTest.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/lang/annotation/CopyRightApacheTest.java
 Wed Oct 15 17:48:28 2014
@@ -20,6 +20,7 @@ package org.apache.commons.jcs.yajcache.
  */
 
 import junit.framework.TestCase;
+
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefCacheTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefCacheTest.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefCacheTest.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefCacheTest.java
 Wed Oct 15 17:48:28 2014
@@ -19,10 +19,13 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
+import junit.framework.TestCase;
+
 import org.apache.commons.jcs.yajcache.core.CacheManager;
 import org.apache.commons.jcs.yajcache.core.CacheType;
 import org.apache.commons.jcs.yajcache.core.ICache;
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
+import org.apache.commons.jcs.yajcache.lang.annotation.CopyRightApache;
+import org.apache.commons.jcs.yajcache.lang.annotation.TestOnly;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefFileCacheSafeTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefFileCacheSafeTest.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefFileCacheSafeTest.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/soft/SoftRefFileCacheSafeTest.java
 Wed Oct 15 17:48:28 2014
@@ -19,10 +19,13 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
+import junit.framework.TestCase;
+
 import org.apache.commons.jcs.yajcache.core.CacheManager;
 import org.apache.commons.jcs.yajcache.core.CacheType;
 import org.apache.commons.jcs.yajcache.core.ICacheSafe;
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
+import org.apache.commons.jcs.yajcache.lang.annotation.CopyRightApache;
+import org.apache.commons.jcs.yajcache.lang.annotation.TestOnly;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/SerializeUtilsTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/SerializeUtilsTest.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/SerializeUtilsTest.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/SerializeUtilsTest.java
 Wed Oct 15 17:48:28 2014
@@ -19,12 +19,15 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
+import java.util.Arrays;
+
+import junit.framework.TestCase;
+
+import org.apache.commons.jcs.yajcache.lang.annotation.CopyRightApache;
+import org.apache.commons.jcs.yajcache.lang.annotation.TestOnly;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
-import java.util.Arrays;
-
 /**
  *
  * @author Hanson Char

Modified: 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/TestSerializable.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/TestSerializable.java?rev=1632139&r1=1632138&r2=1632139&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/TestSerializable.java
 (original)
+++ 
commons/proper/jcs/trunk/commons-jcs-sandbox/yajcache/src/test/java/org/apache/commons/jcs/yajcache/util/TestSerializable.java
 Wed Oct 15 17:48:28 2014
@@ -19,11 +19,12 @@ package org.apache.commons.jcs.yajcache.
  * under the License.
  */
 
-import org.apache.commons.jcs.yajcache.lang.annotation.*;
-import org.apache.commons.lang3.builder.EqualsBuilder;
-
 import java.io.Serializable;
 
+import org.apache.commons.jcs.yajcache.lang.annotation.CopyRightApache;
+import org.apache.commons.jcs.yajcache.lang.annotation.TestOnly;
+import org.apache.commons.lang3.builder.EqualsBuilder;
+
 /**
  *
  * @author Hanson Char


Reply via email to