aboutsummaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorronshapiro <ronshapiro@google.com>2019-03-22 09:48:46 -0700
committerRon Shapiro <shapiro.rd@gmail.com>2019-03-22 14:22:26 -0400
commit93a1477d3e632742360d23df6932f0e0e12961eb (patch)
tree0054dcb5fc5c7371cbc5fdbcebc1d88d998969e6 /service
parent282a3a706a01d1dc3776f618014e7179ddd9bb19 (diff)
downloadauto-93a1477d3e632742360d23df6932f0e0e12961eb.tar.gz
Fix an @link now that @AutoService and its annotations are not in the same maven module
RELNOTES=n/a ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=239811641
Diffstat (limited to 'service')
-rw-r--r--service/annotations/src/main/java/com/google/auto/service/AutoService.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/service/annotations/src/main/java/com/google/auto/service/AutoService.java b/service/annotations/src/main/java/com/google/auto/service/AutoService.java
index 5fd44a65..2ac07349 100644
--- a/service/annotations/src/main/java/com/google/auto/service/AutoService.java
+++ b/service/annotations/src/main/java/com/google/auto/service/AutoService.java
@@ -23,12 +23,11 @@ import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
- * An annotation for service providers as described in {@link java.util.ServiceLoader}. The {@link
- * com.google.auto.service.processor.AutoServiceProcessor} generates the configuration files which
- * allows service providers to be loaded with {@link java.util.ServiceLoader#load(Class)}.
+ * An annotation for service providers as described in {@link java.util.ServiceLoader}. The
+ * annotation processor generates the configuration files that allow the annotated class to be
+ * loaded with {@link java.util.ServiceLoader#load(Class)}.
*
- * <p>Service providers assert that they conform to the service provider specification.
- * Specifically, they must:
+ * <p>The annotated class must conform to the service provider specification. Specifically, it must:
*
* <ul>
* <li>be a non-inner, non-anonymous, concrete class