Remove unused variable in JSONUtilities (#2464)
This commit is contained in:
parent
ad398076a7
commit
63bef81980
@ -78,7 +78,6 @@ public class JSONUtilities {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static public ArrayNode getArray(ObjectNode obj, String key) {
|
static public ArrayNode getArray(ObjectNode obj, String key) {
|
||||||
JsonNode v = obj.get(key);
|
|
||||||
if( obj.has(key) && obj.get(key) instanceof ArrayNode) {
|
if( obj.has(key) && obj.get(key) instanceof ArrayNode) {
|
||||||
return (ArrayNode) obj.get(key);
|
return (ArrayNode) obj.get(key);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user