Reimplement coherent updating

This commit is contained in:
RatzzFatzz
2025-12-15 02:39:44 +01:00
parent 80c46508b8
commit a51922968e
13 changed files with 260 additions and 167 deletions

View File

@@ -21,7 +21,7 @@ import picocli.CommandLine.Option;
@Setter
@NoArgsConstructor
@CommandLine.Command
public class InputConfig {
public class InputConfig implements CommandLine.IVersionProvider {
private File configPath;
@@ -108,5 +108,10 @@ public class InputConfig {
.add("attributeConfig=" + attributeConfig)
.toString();
}
@Override
public String[] getVersion() throws Exception {
return new String[0];
}
}