File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/java/dev/mccue/json Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public JsonValueHandler onField(java.lang.String fieldName) {
2525 }
2626
2727 @ Override
28- public void objectEnd () {
28+ public void onObjectEnd () {
2929 onObject .accept (((ObjectBuilder ) builder ).buildInternal ());
3030 }
3131 }
Original file line number Diff line number Diff line change @@ -452,7 +452,7 @@ private static void readObjectStream(
452452 case ',' :
453453 continue ;
454454 case '}' :
455- objectHandler .objectEnd ();
455+ objectHandler .onObjectEnd ();
456456 return ;
457457 default :
458458 throw JsonReadException .missingEntryInObject ();
@@ -463,7 +463,7 @@ private static void readObjectStream(
463463 throw JsonReadException .emptyEntryInObject ();
464464 }
465465 else {
466- objectHandler .objectEnd ();
466+ objectHandler .onObjectEnd ();
467467 return ;
468468 }
469469 }
Original file line number Diff line number Diff line change 44public interface JsonObjectHandler {
55 JsonValueHandler onField (String fieldName );
66
7- void objectEnd ();
7+ void onObjectEnd ();
88}
99
You can’t perform that action at this time.
0 commit comments