Skip to content

Commit 6884325

Browse files
committed
...
1 parent 8be1913 commit 6884325

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/fasterxml/jackson/core/util/JsonGeneratorDelegate.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ public void writeObject(Object pojo) throws IOException,JsonProcessingException
325325
}
326326

327327
@Override
328-
public void writeTree(TreeNode rootNode) throws IOException, JsonProcessingException {
328+
public void writeTree(TreeNode rootNode) throws IOException {
329329
if (delegateCopyMethods) {
330330
delegate.writeTree(rootNode);
331331
return;
@@ -356,13 +356,13 @@ public void writeTree(TreeNode rootNode) throws IOException, JsonProcessingExcep
356356
*/
357357

358358
@Override
359-
public void copyCurrentEvent(JsonParser jp) throws IOException, JsonProcessingException {
359+
public void copyCurrentEvent(JsonParser jp) throws IOException {
360360
if (delegateCopyMethods) delegate.copyCurrentEvent(jp);
361361
else super.copyCurrentEvent(jp);
362362
}
363363

364364
@Override
365-
public void copyCurrentStructure(JsonParser jp) throws IOException, JsonProcessingException {
365+
public void copyCurrentStructure(JsonParser jp) throws IOException {
366366
if (delegateCopyMethods) delegate.copyCurrentStructure(jp);
367367
else super.copyCurrentStructure(jp);
368368
}

0 commit comments

Comments
 (0)