We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7126cf9 commit 5c9c80bCopy full SHA for 5c9c80b
cli/src/main/java/com/devonfw/tools/ide/environment/EnvironmentVariablesPropertiesFile.java
@@ -172,14 +172,14 @@ private boolean load(Path file) {
172
@Override
173
public void save() {
174
175
- boolean isLegecy = Boolean.TRUE.equals(this.legacyConfiguration);
176
- if (this.modifiedVariables.isEmpty() && !isLegecy) {
+ boolean isLegacy = Boolean.TRUE.equals(this.legacyConfiguration);
+ if (this.modifiedVariables.isEmpty() && !isLegacy) {
177
this.context.trace("No changes to save in properties file {}", this.propertiesFilePath);
178
return;
179
}
180
181
Path file = this.propertiesFilePath;
182
- if (isLegecy) {
+ if (isLegacy) {
183
this.context.info("Converting legacy properties to {}", this.propertiesFilePath);
184
file = this.legacyPropertiesFilePath;
185
0 commit comments