Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
363316a8
Commit
363316a8
authored
Jan 07, 2016
by
Feng Xiao
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1100 from xfxyjwf/javadoc
Update version number and fix javadoc errors.
parents
ee4a0c0e
7d075a44
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
FieldMaskUtil.java
...src/main/java/com/google/protobuf/util/FieldMaskUtil.java
+2
-2
pom.xml
javanano/pom.xml
+2
-2
FieldArray.java
...no/src/main/java/com/google/protobuf/nano/FieldArray.java
+2
-2
No files found.
java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java
View file @
363316a8
...
...
@@ -119,7 +119,7 @@ public class FieldMaskUtil {
/**
* Constructs a FieldMask from the passed field numbers.
*
* @throws IllegalAr
ug
mentException if any of the fields are invalid for the message.
* @throws IllegalAr
gu
mentException 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 IllegalAr
ug
mentException if any of the fields are invalid for the message.
* @throws IllegalAr
gu
mentException if any of the fields are invalid for the message.
*/
public
static
FieldMask
fromFieldNumbers
(
Class
<?
extends
Message
>
type
,
Iterable
<
Integer
>
fieldNumbers
)
{
...
...
javanano/pom.xml
View file @
363316a8
...
...
@@ -10,7 +10,7 @@
</parent>
<groupId>
com.google.protobuf.nano
</groupId>
<artifactId>
protobuf-javanano
</artifactId>
<version>
3.0.0-alpha-
4
</version>
<version>
3.0.0-alpha-
5
</version>
<packaging>
bundle
</packaging>
<name>
Protocol Buffer JavaNano API
</name>
<description>
...
...
@@ -165,7 +165,7 @@
<instructions>
<Bundle-DocURL>
https://developers.google.com/protocol-buffers/
</Bundle-DocURL>
<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>
</configuration>
</plugin>
...
...
javanano/src/main/java/com/google/protobuf/nano/FieldArray.java
View file @
363316a8
...
...
@@ -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.
*
* <p>This class is an internal implementation detail of nano and should not
* 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
{
private
static
final
FieldData
DELETED
=
new
FieldData
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment