aboutsummaryrefslogtreecommitdiff
path: root/java/util
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2016-01-06 15:47:41 -0800
committerFeng Xiao <xfxyjwf@gmail.com>2016-01-06 15:47:41 -0800
commit7d075a44c14f82725c0327605f81ba081c416e2a (patch)
treecb818c42c9fd7de6725553d604e5b1275912488e /java/util
parentd5fb408ddc281ffcadeb08699e65bb694656d0bd (diff)
downloadprotobuf-7d075a44c14f82725c0327605f81ba081c416e2a.tar.gz
protobuf-7d075a44c14f82725c0327605f81ba081c416e2a.tar.bz2
protobuf-7d075a44c14f82725c0327605f81ba081c416e2a.zip
Update version number and fix javadoc errors.
Diffstat (limited to 'java/util')
-rw-r--r--java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java b/java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java
index 535be0fa..0b3060a7 100644
--- a/java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java
+++ b/java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java
@@ -119,7 +119,7 @@ public class FieldMaskUtil {
/**
* Constructs a FieldMask from the passed field numbers.
*
- * @throws IllegalArugmentException if any of the fields are invalid for the message.
+ * @throws IllegalArgumentException if any of the fields are invalid for the message.
*/
public static FieldMask fromFieldNumbers(Class<? extends Message> type, int... fieldNumbers) {
return fromFieldNumbers(type, Ints.asList(fieldNumbers));
@@ -128,7 +128,7 @@ public class FieldMaskUtil {
/**
* Constructs a FieldMask from the passed field numbers.
*
- * @throws IllegalArugmentException if any of the fields are invalid for the message.
+ * @throws IllegalArgumentException if any of the fields are invalid for the message.
*/
public static FieldMask fromFieldNumbers(
Class<? extends Message> type, Iterable<Integer> fieldNumbers) {