We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0febb31 commit 128db8bCopy full SHA for 128db8b
tools/samm-cli/src/main/java/org/eclipse/esmf/aas/to/AasToAspectCommand.java
@@ -56,13 +56,13 @@ public class AasToAspectCommand extends AbstractCommand {
56
names = { "--output-directory", "-d" },
57
description = "Output directory to write files to"
58
)
59
- private final String outputPath = ".";
+ private String outputPath = ".";
60
61
@CommandLine.Option(
62
names = { "--submodel-template", "-s" },
63
description = "Select the submodel template(s) to include, as returned by the aas list command"
64
65
- private final List<Integer> selectedOptions = new ArrayList<>();
+ private List<Integer> selectedOptions = new ArrayList<>();
66
67
@CommandLine.Mixin
68
private LoggingMixin loggingMixin;
0 commit comments