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/03/02 20:02:30 UTC

svn commit: r1451917 - /incubator/onami/trunk/scopes/src/main/java/org/apache/onami/scopes/ConcurrentLazySingleton.java

Author: simonetripodi
Date: Sat Mar  2 19:02:30 2013
New Revision: 1451917

URL: http://svn.apache.org/r1451917
Log:
@releng: avoid import just for javadoc

Modified:
    incubator/onami/trunk/scopes/src/main/java/org/apache/onami/scopes/ConcurrentLazySingleton.java

Modified: incubator/onami/trunk/scopes/src/main/java/org/apache/onami/scopes/ConcurrentLazySingleton.java
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/scopes/src/main/java/org/apache/onami/scopes/ConcurrentLazySingleton.java?rev=1451917&r1=1451916&r2=1451917&view=diff
==============================================================================
--- incubator/onami/trunk/scopes/src/main/java/org/apache/onami/scopes/ConcurrentLazySingleton.java (original)
+++ incubator/onami/trunk/scopes/src/main/java/org/apache/onami/scopes/ConcurrentLazySingleton.java Sat Mar  2 19:02:30 2013
@@ -20,7 +20,6 @@ package org.apache.onami.scopes;
  */
 
 import com.google.inject.ScopeAnnotation;
-import com.google.inject.Scopes;
 
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
@@ -29,7 +28,7 @@ import java.lang.annotation.Target;
 
 /**
  * Same as {@link LazySingleton} with the addition of allowing for more
- * concurrency. The various {@link Scopes#SINGLETON} based scopes have
+ * concurrency. The various {@code com.google.inject.Scopes#SINGLETON} based scopes have
  * a major concurrency restriction due to a blunt synchronization (see
  * the comment inside of the Guice code). This version synchronizes
  * on the object key and, thus, can construct multiple types of singletons