revised JsonArray.set() method to return the JsonElement. (thanks Buchholz Bastian for catching that!)

This commit is contained in:
Inderjeet Singh 2014-07-04 17:31:43 +00:00
parent b9578a4d7e
commit 80bbf4a85a

View File

@ -75,11 +75,12 @@ public final class JsonArray extends JsonElement implements Iterable<JsonElement
* Element can be null. * Element can be null.
* @param index index of the element to replace * @param index index of the element to replace
* @param element element to be stored at the specified position * @param element element to be stored at the specified position
* @return
* @return the element previously at the specified position * @return the element previously at the specified position
* @throws IndexOutOfBoundsException if the specified index is outside the array bounds * @throws IndexOutOfBoundsException if the specified index is outside the array bounds
*/ */
public void set(int index, JsonElement element) { public JsonElement set(int index, JsonElement element) {
elements.set(index, element); return elements.set(index, element);
} }
/** /**