Skip to content

Commit

Permalink
Merge branch 'develop' into feature/deps-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 authored Feb 10, 2025
2 parents 799f281 + 3796358 commit 08aff7e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.SneakyThrows;
Expand Down Expand Up @@ -115,10 +116,14 @@ public class LanguageServerConfiguration {
private File configurationFile;

@Value("${app.configuration.path:.bsl-language-server.json}")
@Getter(value=AccessLevel.NONE)
@Setter(value=AccessLevel.NONE)
@JsonIgnore
private String configurationFilePath;

@Value(("${app.globalConfiguration.path:${user.home}/.bsl-language-server.json}"))
@Getter(value=AccessLevel.NONE)
@Setter(value=AccessLevel.NONE)
@JsonIgnore
private String globalConfigPath;

Expand Down

0 comments on commit 08aff7e

Please sign in to comment.