Skip to content

Commit fa3e874

Browse files
committed
Remove final field modifier
1 parent 26deb5f commit fa3e874

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

junit-platform-console/src/main/java/org/junit/platform/console/options/TestConsoleOutputOptionsMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ public static class ConsoleOutputOptions {
4141
@Option(names = "--details", paramLabel = "MODE", defaultValue = DEFAULT_DETAILS_NAME, description = "Select an output details mode for when tests are executed. " //
4242
+ "Use one of: ${COMPLETION-CANDIDATES}. If 'none' is selected, " //
4343
+ "then only the summary and test failures are shown. Default: ${DEFAULT-VALUE}.")
44-
private final Details details = DEFAULT_DETAILS;
44+
private Details details = DEFAULT_DETAILS;
4545

4646
@Option(names = "--details-theme", paramLabel = "THEME", description = "Select an output details tree theme for when tests are executed. "
4747
+ "Use one of: ${COMPLETION-CANDIDATES}. Default is detected based on default character encoding.")
48-
private final Theme theme = DEFAULT_THEME;
48+
private Theme theme = DEFAULT_THEME;
4949

5050
@Option(names = "--redirect-stdout", paramLabel = "FILE", description = "Redirect test output to stdout to a file.")
5151
private @Nullable Path stdout;

0 commit comments

Comments
 (0)