Skip to content

Commit 128db8b

Browse files
committed
Make argument fields in AasToAspectCommand non-final
1 parent 0febb31 commit 128db8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/samm-cli/src/main/java/org/eclipse/esmf/aas/to/AasToAspectCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ public class AasToAspectCommand extends AbstractCommand {
5656
names = { "--output-directory", "-d" },
5757
description = "Output directory to write files to"
5858
)
59-
private final String outputPath = ".";
59+
private String outputPath = ".";
6060

6161
@CommandLine.Option(
6262
names = { "--submodel-template", "-s" },
6363
description = "Select the submodel template(s) to include, as returned by the aas list command"
6464
)
65-
private final List<Integer> selectedOptions = new ArrayList<>();
65+
private List<Integer> selectedOptions = new ArrayList<>();
6666

6767
@CommandLine.Mixin
6868
private LoggingMixin loggingMixin;

0 commit comments

Comments
 (0)