Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ public void serializeWithType(JsonGenerator g, SerializerProvider provider,
*
* @since 2.1
*/
public JsonNode set(String fieldName, JsonNode value)
public ObjectNode set(String fieldName, JsonNode value)
{
if (value == null) {
value = nullNode();
Expand All @@ -373,7 +373,7 @@ public JsonNode set(String fieldName, JsonNode value)
*
* @since 2.1
*/
public JsonNode setAll(Map<String,? extends JsonNode> properties)
public ObjectNode setAll(Map<String,? extends JsonNode> properties)
{
for (Map.Entry<String,? extends JsonNode> en : properties.entrySet()) {
JsonNode n = en.getValue();
Expand All @@ -395,7 +395,7 @@ public JsonNode setAll(Map<String,? extends JsonNode> properties)
*
* @since 2.1
*/
public JsonNode setAll(ObjectNode other)
public ObjectNode setAll(ObjectNode other)
{
_children.putAll(other._children);
return this;
Expand Down