aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorBrian Duff <bduff@google.com>2015-01-07 18:02:01 -0800
committerBrian Duff <bduff@google.com>2015-01-07 18:03:27 -0800
commit8a9cb40e0eff7394223f8be997295749f1553c51 (patch)
tree8b681ba8a3437d9a98e5a2ab9c6a5107ee2c2bba /java
parentc35945d022afb86631adfc746254598c60323f72 (diff)
downloadexternal_protobuf-8a9cb40e0eff7394223f8be997295749f1553c51.zip
external_protobuf-8a9cb40e0eff7394223f8be997295749f1553c51.tar.gz
external_protobuf-8a9cb40e0eff7394223f8be997295749f1553c51.tar.bz2
Fix comments.
Forgot to update these in https://android-review.googlesource.com/#/c/109809/ Change-Id: I53f838e2f134f53964161d9620d5ead00c4a3939
Diffstat (limited to 'java')
-rw-r--r--java/src/main/java/com/google/protobuf/nano/Extension.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/main/java/com/google/protobuf/nano/Extension.java b/java/src/main/java/com/google/protobuf/nano/Extension.java
index 728f0dc..b4d3eb0 100644
--- a/java/src/main/java/com/google/protobuf/nano/Extension.java
+++ b/java/src/main/java/com/google/protobuf/nano/Extension.java
@@ -75,7 +75,7 @@ public class Extension<M extends ExtendableMessageNano<M>, T> {
public static final int TYPE_SINT64 = 18;
// Note: these create...() methods take a long for the tag parameter,
- // because tags are represented as unsigned longs, and these values exist
+ // because tags are represented as unsigned ints, and these values exist
// in generated code as long values. However, they can fit in 32-bits, so
// it's safe to cast them to int without loss of precision.
@@ -142,7 +142,7 @@ public class Extension<M extends ExtendableMessageNano<M>, T> {
protected final Class<T> clazz;
/**
- * Tag number of this extension.
+ * Tag number of this extension. The data should be viewed as an unsigned 32-bit value.
*/
public final int tag;