aboutsummaryrefslogtreecommitdiff
path: root/java/dagger/model/Scope.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/dagger/model/Scope.java')
-rw-r--r--java/dagger/model/Scope.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/dagger/model/Scope.java b/java/dagger/model/Scope.java
index c7ebfa811..fe64c86d4 100644
--- a/java/dagger/model/Scope.java
+++ b/java/dagger/model/Scope.java
@@ -26,7 +26,6 @@ import com.google.auto.value.AutoValue;
import com.google.common.base.Equivalence;
import com.squareup.javapoet.ClassName;
import dagger.Reusable;
-import dagger.producers.ProductionScope;
import javax.inject.Singleton;
import javax.lang.model.element.AnnotationMirror;
import javax.lang.model.element.TypeElement;
@@ -88,7 +87,7 @@ public abstract class Scope {
return isScope(REUSABLE);
}
- /** Returns {@code true} if this scope is the {@link ProductionScope @ProductionScope} scope. */
+ /** Returns {@code true} if this scope is the {@code @ProductionScope} scope. */
public final boolean isProductionScope() {
return isScope(PRODUCTION_SCOPE);
}