Skip to content

Commit

Permalink
fixes according to the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Azat Yarullin committed Dec 20, 2017
1 parent ffb988a commit c9cfff8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions gson/src/main/java/com/google/gson/JsonArray.java
100644 → 100755
Expand Up @@ -373,11 +373,9 @@ public boolean getAsBoolean() {
}

/**
* Returns this array as List of JsonElement
*
* @return this array as List of JsonElement
*/
public List<JsonElement> getAsList() {
* @return this array as {@link List} of {@link JsonElement}
*/
public List<JsonElement> asList() {
return elements;
}

Expand Down

0 comments on commit c9cfff8

Please sign in to comment.