Correct typo from 'propeties' to 'properties'

This commit is contained in:
dbswlrla112@naver.com
2024-10-17 17:05:39 +09:00
committed by Martin Lippert
parent f36eac6680
commit 89673ea2ac
2 changed files with 3 additions and 3 deletions

View File

@@ -242,10 +242,10 @@ public abstract class AbstractBootLaunchConfigurationDelegate extends AdvancedJa
}
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);
}