Skip to content

Commit

Permalink
Fix javadoc @link warnings
Browse files Browse the repository at this point in the history
----Release Notes----
[]
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=112105439
  • Loading branch information
peihe authored and lukecwik committed Jan 15, 2016
1 parent 9c1473c commit 6bb5987
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public Object structuralValue(byte[] value) {
/**
* {@inheritDoc}
*
* @return {@code true} since {@link #getEncodedElementByteSize(byte[], Context)} runs in
* @return {@code true} since {@link #getEncodedElementByteSize} runs in
* constant time using the {@code length} of the provided array.
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public boolean consistentWithEquals() {
/**
* {@inheritDoc}
*
* @return {@code true}. {@link #getEncodedElementByteSize(Integer, Context)} is cheap.
* @return {@code true}. {@link #getEncodedElementByteSize} is cheap.
*/
@Override
public boolean isRegisterByteSizeObserverCheap(Integer value, Context context) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public boolean consistentWithEquals() {
/**
* {@inheritDoc}
*
* @return {@code true}. {@link #getEncodedElementByteSize(Long, Context)} is cheap.
* @return {@code true}. {@link #getEncodedElementByteSize} is cheap.
*/
@Override
public boolean isRegisterByteSizeObserverCheap(Long value, Context context) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public boolean consistentWithEquals() {
/**
* {@inheritDoc}
*
* @return {@code true}. {@link VoidCoder#getEncodedElementByteSize()} runs in constant time.
* @return {@code true}. {@link VoidCoder#getEncodedElementByteSize} runs in constant time.
*/
@Override
public boolean isRegisterByteSizeObserverCheap(Void value, Context context) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public Bound<T> withoutValidation() {
* reads from input sources using the specified compression type.
*
* <p>If no compression type is specified, the default is {@link TextIO.CompressionType#AUTO}.
* See {@link TextIO.Read#withCompressionType(CompressionType)} for more details.
* See {@link TextIO.Read#withCompressionType} for more details.
*
* <p>Does not modify this object.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public static <K, V> GroupedValues<K, V, V> groupedValues(
*
* <p>See {@link GroupedValues Combine.GroupedValues} for more information.
*
* <p>Note that {@link #perKey(GlobalCombineFn)} is typically
* <p>Note that {@link #perKey(CombineFnBase.GlobalCombineFn)} is typically
* more convenient to use than {@link GroupByKey} followed by
* {@code groupedValues(...)}.
*/
Expand All @@ -261,7 +261,7 @@ public static <K, InputT, OutputT> GroupedValues<K, InputT, OutputT> groupedValu
*
* <p>See {@link GroupedValues Combine.GroupedValues} for more information.
*
* <p>Note that {@link #perKey(PerKeyCombineFn)} is typically
* <p>Note that {@link #perKey(CombineFnBase.PerKeyCombineFn)} is typically
* more convenient to use than {@link GroupByKey} followed by
* {@code groupedValues(...)}.
*/
Expand Down

0 comments on commit 6bb5987

Please sign in to comment.