feat(ProjectSettings): default effective

This commit is contained in:
林万程
2024-01-16 22:03:36 +08:00
parent 85a70a7ac5
commit 8f26bbce3c

View File

@@ -18,6 +18,7 @@ import java.util.regex.Pattern;
public class ProjectSettingsState extends AbstractSettingsState implements PersistentStateComponent<ProjectSettingsState> {
public ProjectSettingsState() {
this.lineEndCount = 0;
this.lineExclude = Pattern.compile("");
this.annoDocEffect = false;
this.annoDoc = new String[][]{};
@@ -30,7 +31,7 @@ public class ProjectSettingsState extends AbstractSettingsState implements Persi
public static final ProjectSettingsState DEFAULT_SETTING = new ProjectSettingsState();
public boolean globalFilterEffective = true;
public boolean projectFilterEffective = false;
public boolean projectFilterEffective = true;
@NotNull
public static ProjectSettingsState getInstance(@NotNull Project project) {