This commit is contained in:
rusefillc 2022-04-18 10:57:54 -04:00
parent 61b3f465f3
commit 387dfafe74
2 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import java.util.List;
/** /**
* custom iterator with references to previous and next elements * custom iterator with references to previous and next elements
* @see PerFieldWithStructuresIterator is there a duplication?
*/ */
public class FieldIterator { public class FieldIterator {
private final List<ConfigField> fields; private final List<ConfigField> fields;

View File

@ -5,6 +5,10 @@ import com.rusefi.ReaderState;
import java.util.List; import java.util.List;
/**
* @see FieldsStrategy
* @see FieldIterator is there a duplication?
*/
class PerFieldWithStructuresIterator extends FieldIterator { class PerFieldWithStructuresIterator extends FieldIterator {
private final ReaderState state; private final ReaderState state;
private final String prefix; private final String prefix;