Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Dec 29, 2015
1 parent d0c7cf0 commit 43e2851
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/fasterxml/jackson/databind/JsonNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public final JsonNode at(String jsonPtrExpr) {
}

protected abstract JsonNode _at(JsonPointer ptr);

/*
/**********************************************************
/* Public API, type introspection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private MissingNode() { }
@SuppressWarnings("unchecked")
@Override
public <T extends JsonNode> T deepCopy() { return (T) this; }

public static MissingNode getInstance() { return instance; }

@Override
Expand Down Expand Up @@ -68,11 +68,11 @@ public final void serialize(JsonGenerator jg, SerializerProvider provider)
}

@Override
public void serializeWithType(JsonGenerator jg, SerializerProvider provider,
public void serializeWithType(JsonGenerator g, SerializerProvider provider,
TypeSerializer typeSer)
throws IOException, JsonProcessingException
{
jg.writeNull();
g.writeNull();
}

@Override
Expand Down

0 comments on commit 43e2851

Please sign in to comment.