File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
main/java/de/undercouch/bson4jackson
test/java/de/undercouch/bson4jackson Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,8 @@ public JsonToken nextToken() throws IOException {
228228 if (ctx == null ) {
229229 if (_currToken == JsonToken .END_OBJECT ) {
230230 // end of input
231- return (_currToken = null );
231+ _currToken = null ;
232+ return null ;
232233 }
233234 throw new JsonParseException ("Found element outside the document" ,
234235 getTokenLocation ());
Original file line number Diff line number Diff line change @@ -693,7 +693,8 @@ public void parseWrappedFloat() throws Exception {
693693 }
694694
695695 /**
696- * Parse empty object, specifically checking getCurrentToken() along the way. See issue #128
696+ * Parse empty object, specifically checking getCurrentToken() along the
697+ * way. See issue #128
697698 * @throws Exception if something goes wrong
698699 */
699700 @ Test
You can’t perform that action at this time.
0 commit comments