From c5d1acfe42760119738ab1a0694dc6c2d96543c3 Mon Sep 17 00:00:00 2001 From: mi-hol <22799428+mi-hol@users.noreply.github.com> Date: Sun, 23 Jun 2024 22:36:50 +0200 Subject: [PATCH] remove long obsoleted FSIO --- .../src/main/java/com/rusefi/ReaderStateImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java_tools/configuration_definition/src/main/java/com/rusefi/ReaderStateImpl.java b/java_tools/configuration_definition/src/main/java/com/rusefi/ReaderStateImpl.java index 9aed6cdff5..aa3a146d5a 100644 --- a/java_tools/configuration_definition/src/main/java/com/rusefi/ReaderStateImpl.java +++ b/java_tools/configuration_definition/src/main/java/com/rusefi/ReaderStateImpl.java @@ -82,7 +82,7 @@ private static void handleBitLine(ReaderStateImpl state, String line) { String trueName = bitNameParts.length > 1 ? bitNameParts[1].replaceAll("\"", "") : null; String falseName = bitNameParts.length > 2 ? bitNameParts[2].replaceAll("\"", "") : null; - ConfigFieldImpl bitField = new ConfigFieldImpl(state, bitNameParts[0], comment, null, BOOLEAN_T, new int[0], null, false, false, false, trueName, falseName); + ConfigFieldImpl bitField = new ConfigFieldImpl(state, bitNameParts[0], comment, null, BOOLEAN_T, new int[0], null, false, false, trueName, falseName); if (state.stack.isEmpty()) throw new IllegalStateException("Parent structure expected"); ConfigStructureImpl structure = state.stack.peek(); @@ -320,7 +320,7 @@ private static void processField(ReaderStateImpl state, String line) { for (int i = 1; i <= cf.getArraySizes()[0]; i++) { String commentWithIndex = getCommentWithIndex(cf, i); ConfigFieldImpl element = new ConfigFieldImpl(state, cf.getName() + i, commentWithIndex, null, - cf.getType(), new int[0], cf.getTsInfo(), false, false, cf.isHasAutoscale(), null, null); + cf.getType(), new int[0], cf.getTsInfo(), false, cf.isHasAutoscale(), null, null); element.setFromIterate(cf.getName(), i); structure.addTs(element); }