aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristen Kozak <sebright@google.com>2016-09-22 11:23:35 -0700
committerKristen Kozak <sebright@google.com>2016-09-22 11:23:35 -0700
commitae7d6444e708d2cb32b260d41b83175871ae20cd (patch)
treedac22cab11026a9b79915f530fde76e580784aad
parent5bf67f1fdc5fe4fece7c7de16fba3ed6975eb0fa (diff)
downloadplatform_external_opencensus-java-ae7d6444e708d2cb32b260d41b83175871ae20cd.tar.gz
platform_external_opencensus-java-ae7d6444e708d2cb32b260d41b83175871ae20cd.tar.bz2
platform_external_opencensus-java-ae7d6444e708d2cb32b260d41b83175871ae20cd.zip
Fixes Javadoc errors.
-rw-r--r--core/java/com/google/census/CensusContext.java4
-rw-r--r--core_native/java/com/google/census/CensusContextFactoryImpl.java2
-rw-r--r--core_native/java/com/google/census/CensusContextImpl.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/core/java/com/google/census/CensusContext.java b/core/java/com/google/census/CensusContext.java
index 2a94da2d..1764b1c3 100644
--- a/core/java/com/google/census/CensusContext.java
+++ b/core/java/com/google/census/CensusContext.java
@@ -49,8 +49,8 @@ public abstract class CensusContext {
/**
* Serializes the {@link CensusContext} into the on-the-wire representation.
*
- * <p>The inverse of {@link CensusContextFactory#deserialize()} and should be based on the
- * {@link CensusContext} protobuf representation.
+ * <p>The inverse of {@link CensusContextFactory#deserialize(ByteBuffer)} and should be based on
+ * the {@link CensusContext} protobuf representation.
*
* @return serialized bytes.
*/
diff --git a/core_native/java/com/google/census/CensusContextFactoryImpl.java b/core_native/java/com/google/census/CensusContextFactoryImpl.java
index 680c55cf..beba1743 100644
--- a/core_native/java/com/google/census/CensusContextFactoryImpl.java
+++ b/core_native/java/com/google/census/CensusContextFactoryImpl.java
@@ -22,7 +22,7 @@ final class CensusContextFactoryImpl extends CensusContextFactory {
static final CensusContextImpl DEFAULT = new CensusContextImpl(new HashMap<String, String>(0));
/**
- * Deserializes a {@link CensusContextImpl} from a serialized {@link CensusContextProto}.
+ * Deserializes a {@link CensusContextImpl} from a serialized {@code CensusContextProto}.
*
* <p>The encoded tags are of the form: {@code <tag prefix> + 'key' + <tag delim> + 'value'}*
*/
diff --git a/core_native/java/com/google/census/CensusContextImpl.java b/core_native/java/com/google/census/CensusContextImpl.java
index 2e073036..42b87672 100644
--- a/core_native/java/com/google/census/CensusContextImpl.java
+++ b/core_native/java/com/google/census/CensusContextImpl.java
@@ -35,7 +35,7 @@ final class CensusContextImpl extends CensusContext {
}
/**
- * Serializes a {@link CensusContextImpl} into {@link CensusContextProto} serialized format.
+ * Serializes a {@link CensusContextImpl} into {@code CensusContextProto} serialized format.
*
* <p>The encoded tags are of the form: {@code <tag prefix> + 'key' + <tag delim> + 'value'}*
*/