Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.

Commit ae7d644

Browse files
committed
Fixes Javadoc errors.
1 parent 5bf67f1 commit ae7d644

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

core/java/com/google/census/CensusContext.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public final CensusContext with(
4949
/**
5050
* Serializes the {@link CensusContext} into the on-the-wire representation.
5151
*
52-
* <p>The inverse of {@link CensusContextFactory#deserialize()} and should be based on the
53-
* {@link CensusContext} protobuf representation.
52+
* <p>The inverse of {@link CensusContextFactory#deserialize(ByteBuffer)} and should be based on
53+
* the {@link CensusContext} protobuf representation.
5454
*
5555
* @return serialized bytes.
5656
*/

core_native/java/com/google/census/CensusContextFactoryImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ final class CensusContextFactoryImpl extends CensusContextFactory {
2222
static final CensusContextImpl DEFAULT = new CensusContextImpl(new HashMap<String, String>(0));
2323

2424
/**
25-
* Deserializes a {@link CensusContextImpl} from a serialized {@link CensusContextProto}.
25+
* Deserializes a {@link CensusContextImpl} from a serialized {@code CensusContextProto}.
2626
*
2727
* <p>The encoded tags are of the form: {@code <tag prefix> + 'key' + <tag delim> + 'value'}*
2828
*/

core_native/java/com/google/census/CensusContextImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public CensusContextImpl record(MetricMap stats) {
3535
}
3636

3737
/**
38-
* Serializes a {@link CensusContextImpl} into {@link CensusContextProto} serialized format.
38+
* Serializes a {@link CensusContextImpl} into {@code CensusContextProto} serialized format.
3939
*
4040
* <p>The encoded tags are of the form: {@code <tag prefix> + 'key' + <tag delim> + 'value'}*
4141
*/

0 commit comments

Comments
 (0)