Skip to content

Commit 1059051

Browse files
clshepherdkluever
authored andcommitted
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
1 parent 8e7515a commit 1059051

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

value/src/it/functional/src/main/java/com/google/auto/value/SimpleValueType.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ public abstract class SimpleValueType {
2828
// The getters here are formatted as an illustration of what getters typically look in real
2929
// classes. In particular they have doc comments.
3030

31-
/** @return A string that is a nullable string. */
31+
/** Returns a string that is a nullable string. */
3232
@Nullable
3333
public abstract String string();
3434

35-
/** @return An integer that is an integer. */
35+
/** Returns an integer that is an integer. */
3636
public abstract int integer();
3737

38-
/** @return A non-null map where the keys are strings and the values are longs. */
38+
/** Returns a non-null map where the keys are strings and the values are longs. */
3939
public abstract Map<String, Long> map();
4040

4141
public static SimpleValueType create(

0 commit comments

Comments
 (0)