Skip to content

Commit

Permalink
LogOutputSpecFactory fields changed to 'final'
Browse files Browse the repository at this point in the history
  • Loading branch information
git-zaidism authored and manusa committed Dec 23, 2022
1 parent b212dff commit 8078bdc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
*/
public class LogOutputSpecFactory {
private static final String DEFAULT_PREFIX_FORMAT = "%a> ";
private boolean useColor;
private boolean logStdout;
private String logDate;
private final boolean useColor;
private final boolean logStdout;
private final String logDate;

public LogOutputSpecFactory(boolean useColor, boolean logStdout) {
this(useColor, logStdout, null);
Expand Down

0 comments on commit 8078bdc

Please sign in to comment.