Skip to content

Commit

Permalink
Correct typo from 'propeties' to 'properties'
Browse files Browse the repository at this point in the history
  • Loading branch information
beak1sin authored and martinlippert committed Oct 18, 2024
1 parent f36eac6 commit 89673ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ public static void setRawApplicationProperties(ILaunchConfigurationWorkingCopy c
}

public static Properties getApplicationProperties(ILaunchConfiguration conf) {
String propetiesString = getRawApplicationProperties(conf);
String propertiesString = getRawApplicationProperties(conf);
Properties properties = new Properties();
try {
properties.load(new ByteArrayInputStream(propetiesString.getBytes()));
properties.load(new ByteArrayInputStream(propertiesString.getBytes()));
} catch (IOException e) {
Log.log(e);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void assertConversion(String propsContent, String yamlContent, boolean replace)
Command cmd = new Command();
cmd.setCommand(PropertiesToYamlCommand.CMD_PROPS_TO_YAML);
cmd.setArguments(List.of(propsFilePath.toUri().toASCIIString(), yamlFilePath.toUri().toASCIIString(), replace));
cmd.setTitle("Convert .propeties to .yaml");
cmd.setTitle("Convert .properties to .yaml");

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

Expand Down

0 comments on commit 89673ea

Please sign in to comment.