Skip to content

Commit

Permalink
remove long obsoleted FSIO
Browse files Browse the repository at this point in the history
  • Loading branch information
mi-hol authored Jun 23, 2024
1 parent af93001 commit 5f0d491
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
public class ConfigFieldImpl implements ConfigField {
private static final Logging log = getLogging(ConfigFieldImpl.class);
public static final ConfigFieldImpl VOID = new ConfigFieldImpl(null, "", null, null, null, new int[0], null, false, false, false, null, null);
public static final ConfigFieldImpl VOID = new ConfigFieldImpl(null, "", null, null, null, new int[0], null, false, null, null);

private static final String typePattern = "([\\w\\d_]+)(\\[([\\w\\d]+)(\\sx\\s([\\w\\d]+))?(\\s([\\w\\d]+))?\\])?";

Expand Down Expand Up @@ -65,7 +65,6 @@ public ConfigFieldImpl(ReaderStateImpl state,
String type,
int[] arraySizes,
@Nullable String tsInfo,
boolean isIterate,
boolean hasAutoscale,
String trueName,
String falseName) {
Expand Down Expand Up @@ -200,7 +199,7 @@ public static ConfigFieldImpl parse(ReaderStateImpl state, String line) {


ConfigFieldImpl field = new ConfigFieldImpl(state, name, comment, arraySizeAsText, type, arraySizes,
tsInfo, isIterate, hasAutoscale, null, null);
tsInfo, hasAutoscale, null, null);
if (log.debugEnabled())
log.debug("type " + type);
if (log.debugEnabled())
Expand Down

0 comments on commit 5f0d491

Please sign in to comment.