Commit 7d075a44 authored by Feng Xiao's avatar Feng Xiao

Update version number and fix javadoc errors.

parent d5fb408d
...@@ -119,7 +119,7 @@ public class FieldMaskUtil { ...@@ -119,7 +119,7 @@ public class FieldMaskUtil {
/** /**
* Constructs a FieldMask from the passed field numbers. * 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) { public static FieldMask fromFieldNumbers(Class<? extends Message> type, int... fieldNumbers) {
return fromFieldNumbers(type, Ints.asList(fieldNumbers)); return fromFieldNumbers(type, Ints.asList(fieldNumbers));
...@@ -128,7 +128,7 @@ public class FieldMaskUtil { ...@@ -128,7 +128,7 @@ public class FieldMaskUtil {
/** /**
* Constructs a FieldMask from the passed field numbers. * 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( public static FieldMask fromFieldNumbers(
Class<? extends Message> type, Iterable<Integer> fieldNumbers) { Class<? extends Message> type, Iterable<Integer> fieldNumbers) {
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
</parent> </parent>
<groupId>com.google.protobuf.nano</groupId> <groupId>com.google.protobuf.nano</groupId>
<artifactId>protobuf-javanano</artifactId> <artifactId>protobuf-javanano</artifactId>
<version>3.0.0-alpha-4</version> <version>3.0.0-alpha-5</version>
<packaging>bundle</packaging> <packaging>bundle</packaging>
<name>Protocol Buffer JavaNano API</name> <name>Protocol Buffer JavaNano API</name>
<description> <description>
...@@ -165,7 +165,7 @@ ...@@ -165,7 +165,7 @@
<instructions> <instructions>
<Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL> <Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL>
<Bundle-SymbolicName>com.google.protobuf</Bundle-SymbolicName> <Bundle-SymbolicName>com.google.protobuf</Bundle-SymbolicName>
<Export-Package>com.google.protobuf;version=3.0.0-alpha-4</Export-Package> <Export-Package>com.google.protobuf;version=3.0.0-alpha-5</Export-Package>
</instructions> </instructions>
</configuration> </configuration>
</plugin> </plugin>
......
...@@ -32,13 +32,13 @@ package com.google.protobuf.nano; ...@@ -32,13 +32,13 @@ package com.google.protobuf.nano;
/** /**
* A custom version of {@link android.util.SparseArray} with the minimal API * A custom version of {@code android.util.SparseArray} with the minimal API
* for storing {@link FieldData} objects. * for storing {@link FieldData} objects.
* *
* <p>This class is an internal implementation detail of nano and should not * <p>This class is an internal implementation detail of nano and should not
* be called directly by clients. * be called directly by clients.
* *
* Based on {@link android.support.v4.util.SpareArrayCompat}. * Based on {@code android.support.v4.util.SpareArrayCompat}.
*/ */
public final class FieldArray implements Cloneable { public final class FieldArray implements Cloneable {
private static final FieldData DELETED = new FieldData(); private static final FieldData DELETED = new FieldData();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment