We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 761cd6e commit 1cdc408Copy full SHA for 1cdc408
src/main/java/com/github/fge/jsonpatch/JsonPatch.java
@@ -138,6 +138,7 @@ public static JsonPatch fromJson(final JsonNode node)
138
* @throws JsonPatchException failed to apply patch
139
* @throws NullPointerException input is null
140
*/
141
+ @Override
142
public JsonNode apply(final JsonNode node)
143
throws JsonPatchException
144
{
src/main/java/com/github/fge/jsonpatch/mergepatch/JsonMergePatch.java
@@ -100,6 +100,7 @@ public static JsonMergePatch fromJson(final JsonNode node)
100
* {@link JsonPatch}
101
* @throws NullPointerException value is null
102
103
104
public abstract JsonNode apply(final JsonNode input)
105
throws JsonPatchException;
106
}
0 commit comments