aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclshepherd <clshepherd@google.com>2020-05-12 11:58:29 -0700
committerKurt Alfred Kluever <kak@google.com>2020-05-13 12:56:48 -0400
commit10590517e04ee4162a997a2b4864a985aac189cc (patch)
treefd31fc262b797e734818f1eb91d3f86bcb0753ce
parent8e7515a5a796a236a798c299e5338910a4524f3b (diff)
downloadauto-10590517e04ee4162a997a2b4864a985aac189cc.tar.gz
Fix 3 ErrorProneStyle findings:
* A summary fragment is required; consider using the value of the @return block as a summary fragment instead. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=311172889
-rw-r--r--value/src/it/functional/src/main/java/com/google/auto/value/SimpleValueType.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/value/src/it/functional/src/main/java/com/google/auto/value/SimpleValueType.java b/value/src/it/functional/src/main/java/com/google/auto/value/SimpleValueType.java
index 1607a4e3..9d6c6c70 100644
--- a/value/src/it/functional/src/main/java/com/google/auto/value/SimpleValueType.java
+++ b/value/src/it/functional/src/main/java/com/google/auto/value/SimpleValueType.java
@@ -28,14 +28,14 @@ public abstract class SimpleValueType {
// The getters here are formatted as an illustration of what getters typically look in real
// classes. In particular they have doc comments.
- /** @return A string that is a nullable string. */
+ /** Returns a string that is a nullable string. */
@Nullable
public abstract String string();
- /** @return An integer that is an integer. */
+ /** Returns an integer that is an integer. */
public abstract int integer();
- /** @return A non-null map where the keys are strings and the values are longs. */
+ /** Returns a non-null map where the keys are strings and the values are longs. */
public abstract Map<String, Long> map();
public static SimpleValueType create(