1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

fixes for javadoc

This commit is contained in:
John J. Aylward 2017-05-17 11:34:13 -04:00
parent fcdb8671b2
commit 0c7bd725a6
2 changed files with 1 additions and 5 deletions

View file

@ -816,8 +816,6 @@ public class JSONArray implements Iterable<Object> {
*
* @param index
* The index must be between 0 and length() - 1.
* @param defaultValue
* The default.
* @return An object which is the value.
*/
public Number optNumber(int index) {
@ -858,7 +856,7 @@ public class JSONArray implements Iterable<Object> {
/**
* Get the optional string value associated with an index. It returns an
* empty string if there is no value at that index. If the value is not a
* string and is not null, then it is coverted to a string.
* string and is not null, then it is converted to a string.
*
* @param index
* The index must be between 0 and length() - 1.