[Minor] fixed typo

This commit is contained in:
Robert von Burg 2014-07-31 22:59:27 +02:00
parent 68a69f6319
commit 62265da046
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ public abstract class AbstractionConfiguration {
File dataDir = new File(configuration.getDataPath(), value);
if (checkExists && !dataDir.isDirectory() || !dataDir.canRead()) {
String msg = "Component {0} requires data directory for configuraion property ''{1}'' which does not exist with value: {2}"; //$NON-NLS-1$
String msg = "Component {0} requires data directory for configuration property ''{1}'' which does not exist with value: {2}"; //$NON-NLS-1$
msg = MessageFormat.format(msg, this.name, key, value);
throw new StrolchConfigurationException(msg);
}
@ -147,7 +147,7 @@ public abstract class AbstractionConfiguration {
File dataFile = new File(configuration.getDataPath(), value);
if (checkExists && !dataFile.isFile() || !dataFile.canRead()) {
String msg = "Component {0} requires data file for configuraion property ''{1}'' which does not exist with value: {2}"; //$NON-NLS-1$
String msg = "Component {0} requires data file for configuration property ''{1}'' which does not exist with value: {2}"; //$NON-NLS-1$
msg = MessageFormat.format(msg, this.name, key, value);
throw new StrolchConfigurationException(msg);
}