Skip to content

Commit 1cdc408

Browse files
committed
Add missing @OVERRIDES from commit 08009be.
1 parent 761cd6e commit 1cdc408

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Diff for: src/main/java/com/github/fge/jsonpatch/JsonPatch.java

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ public static JsonPatch fromJson(final JsonNode node)
138138
* @throws JsonPatchException failed to apply patch
139139
* @throws NullPointerException input is null
140140
*/
141+
@Override
141142
public JsonNode apply(final JsonNode node)
142143
throws JsonPatchException
143144
{

Diff for: src/main/java/com/github/fge/jsonpatch/mergepatch/JsonMergePatch.java

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ public static JsonMergePatch fromJson(final JsonNode node)
100100
* {@link JsonPatch}
101101
* @throws NullPointerException value is null
102102
*/
103+
@Override
103104
public abstract JsonNode apply(final JsonNode input)
104105
throws JsonPatchException;
105106
}

0 commit comments

Comments
 (0)