You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by si...@apache.org on 2013/01/19 21:34:12 UTC

svn commit: r1435678 - /incubator/onami/trunk/test/src/main/java/org/apache/onami/test/handler/GuiceModuleHandler.java

Author: simonetripodi
Date: Sat Jan 19 20:34:11 2013
New Revision: 1435678

URL: http://svn.apache.org/viewvc?rev=1435678&view=rev
Log:
fixed "Unused import - org.apache.onami.test.reflection.ClassVisitor." checkstyle rule

Modified:
    incubator/onami/trunk/test/src/main/java/org/apache/onami/test/handler/GuiceModuleHandler.java

Modified: incubator/onami/trunk/test/src/main/java/org/apache/onami/test/handler/GuiceModuleHandler.java
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/test/src/main/java/org/apache/onami/test/handler/GuiceModuleHandler.java?rev=1435678&r1=1435677&r2=1435678&view=diff
==============================================================================
--- incubator/onami/trunk/test/src/main/java/org/apache/onami/test/handler/GuiceModuleHandler.java (original)
+++ incubator/onami/trunk/test/src/main/java/org/apache/onami/test/handler/GuiceModuleHandler.java Sat Jan 19 20:34:11 2013
@@ -26,7 +26,6 @@ import java.util.logging.Logger;
 
 import org.apache.onami.test.annotation.GuiceModules;
 import org.apache.onami.test.reflection.ClassHandler;
-import org.apache.onami.test.reflection.ClassVisitor;
 import org.apache.onami.test.reflection.HandleException;
 
 import com.google.inject.Module;
@@ -34,7 +33,7 @@ import com.google.inject.Module;
 /**
  * Handler class to handle all {@link GuiceModules} annotations.
  *
- * @see ClassVisitor
+ * @see org.apache.onami.test.reflection.ClassVisitor
  */
 public final class GuiceModuleHandler
     implements ClassHandler<GuiceModules>