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) {
239
239
flattener .startRecord (identifier );
240
240
entityCountStack .clear ();
241
241
entityCount = 0 ;
242
- entityCountStack .add (Integer . valueOf ( entityCount ) );
242
+ entityCountStack .add (entityCount );
243
243
recordIdentifier = identifier ;
244
244
entities = new ArrayList <>();
245
245
}
@@ -317,13 +317,13 @@ public void startEntity(final String name) {
317
317
addValue (name , value );
318
318
entities .add (value );
319
319
320
- entityCountStack .push (Integer . valueOf ( ++entityCount ) );
320
+ entityCountStack .push (++entityCount );
321
321
flattener .startEntity (name );
322
322
}
323
323
324
324
@ Override
325
325
public void endEntity () {
326
- entityCountStack .pop (). intValue () ;
326
+ entityCountStack .pop ();
327
327
flattener .endEntity ();
328
328
}
329
329
You can’t perform that action at this time.
0 commit comments