File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
metafix/src/main/java/org/metafacture/metafix Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ public void startRecord(final String identifier) {
239239 flattener .startRecord (identifier );
240240 entityCountStack .clear ();
241241 entityCount = 0 ;
242- entityCountStack .add (Integer . valueOf ( entityCount ) );
242+ entityCountStack .add (entityCount );
243243 recordIdentifier = identifier ;
244244 entities = new ArrayList <>();
245245 }
@@ -317,13 +317,13 @@ public void startEntity(final String name) {
317317 addValue (name , value );
318318 entities .add (value );
319319
320- entityCountStack .push (Integer . valueOf ( ++entityCount ) );
320+ entityCountStack .push (++entityCount );
321321 flattener .startEntity (name );
322322 }
323323
324324 @ Override
325325 public void endEntity () {
326- entityCountStack .pop (). intValue () ;
326+ entityCountStack .pop ();
327327 flattener .endEntity ();
328328 }
329329
You can’t perform that action at this time.
0 commit comments