micro refactoring
This commit is contained in:
parent
a24358f350
commit
76b746548c
|
@ -54,7 +54,7 @@ public abstract class BaseCHeaderConsumer implements ConfigurationConsumer {
|
||||||
FieldIterator iterator = new FieldIterator(structure.cFields);
|
FieldIterator iterator = new FieldIterator(structure.cFields);
|
||||||
for (int i = 0; i < structure.cFields.size(); i++) {
|
for (int i = 0; i < structure.cFields.size(); i++) {
|
||||||
iterator.start(i);
|
iterator.start(i);
|
||||||
content.append(BaseCHeaderConsumer.getHeaderText(iterator.cf, currentOffset, iterator.bitState.get()));
|
content.append(getHeaderText(iterator.cf, currentOffset, iterator.bitState.get()));
|
||||||
|
|
||||||
currentOffset += iterator.cf.getSize(iterator.next);
|
currentOffset += iterator.cf.getSize(iterator.next);
|
||||||
iterator.end();
|
iterator.end();
|
||||||
|
|
Loading…
Reference in New Issue