Skip to content

Commit 89673ea

Browse files
beak1sinmartinlippert
authored andcommitted
Correct typo from 'propeties' to 'properties'
1 parent f36eac6 commit 89673ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

eclipse-extensions/org.springframework.ide.eclipse.boot.launch/src/org/springframework/ide/eclipse/boot/launch/AbstractBootLaunchConfigurationDelegate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,10 @@ public static void setRawApplicationProperties(ILaunchConfigurationWorkingCopy c
242242
}
243243

244244
public static Properties getApplicationProperties(ILaunchConfiguration conf) {
245-
String propetiesString = getRawApplicationProperties(conf);
245+
String propertiesString = getRawApplicationProperties(conf);
246246
Properties properties = new Properties();
247247
try {
248-
properties.load(new ByteArrayInputStream(propetiesString.getBytes()));
248+
properties.load(new ByteArrayInputStream(propertiesString.getBytes()));
249249
} catch (IOException e) {
250250
Log.log(e);
251251
}

headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/properties/PropertiesToYamlCommandTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ void assertConversion(String propsContent, String yamlContent, boolean replace)
9191
Command cmd = new Command();
9292
cmd.setCommand(PropertiesToYamlCommand.CMD_PROPS_TO_YAML);
9393
cmd.setArguments(List.of(propsFilePath.toUri().toASCIIString(), yamlFilePath.toUri().toASCIIString(), replace));
94-
cmd.setTitle("Convert .propeties to .yaml");
94+
cmd.setTitle("Convert .properties to .yaml");
9595

9696
ShowDocumentResult res = (ShowDocumentResult) harness.perform(cmd);
9797

0 commit comments

Comments
 (0)