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 2017/09/06 21:31:53 UTC

svn commit: r1807529 - /commons/proper/vfs/trunk/commons-vfs2/src/test/java/org/apache/commons/vfs2/cache/LRUFilesCacheTestCase.java

Author: ggregory
Date: Wed Sep  6 21:31:53 2017
New Revision: 1807529

URL: http://svn.apache.org/viewvc?rev=1807529&view=rev
Log:
Remove redundant super-interface.

Modified:
    commons/proper/vfs/trunk/commons-vfs2/src/test/java/org/apache/commons/vfs2/cache/LRUFilesCacheTestCase.java

Modified: commons/proper/vfs/trunk/commons-vfs2/src/test/java/org/apache/commons/vfs2/cache/LRUFilesCacheTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/test/java/org/apache/commons/vfs2/cache/LRUFilesCacheTestCase.java?rev=1807529&r1=1807528&r2=1807529&view=diff
==============================================================================
--- commons/proper/vfs/trunk/commons-vfs2/src/test/java/org/apache/commons/vfs2/cache/LRUFilesCacheTestCase.java (original)
+++ commons/proper/vfs/trunk/commons-vfs2/src/test/java/org/apache/commons/vfs2/cache/LRUFilesCacheTestCase.java Wed Sep  6 21:31:53 2017
@@ -18,22 +18,20 @@ package org.apache.commons.vfs2.cache;
 
 import java.io.File;
 
-import junit.framework.Test;
-
 import org.apache.commons.AbstractVfsTestCase;
 import org.apache.commons.vfs2.FileObject;
 import org.apache.commons.vfs2.FileSystemManager;
 import org.apache.commons.vfs2.FilesCache;
 import org.apache.commons.vfs2.test.AbstractProviderTestConfig;
 import org.apache.commons.vfs2.test.CacheTestSuite;
-import org.apache.commons.vfs2.test.ProviderTestConfig;
+
+import junit.framework.Test;
 
 /**
  * Tests the {@link LRUFilesCache} using {@link LRUFilesCacheTestss}.
  */
 public class LRUFilesCacheTestCase
     extends AbstractProviderTestConfig
-    implements ProviderTestConfig
 {
     public static Test suite() throws Exception
     {