Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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