fixed line length issues

This commit is contained in:
Lars Kühne 2002-11-30 18:51:12 +00:00
parent 42bf430386
commit 7fcefa2c26
1 changed files with 4 additions and 2 deletions

View File

@ -102,7 +102,8 @@ class ConfigurationLoader
String propName = value.substring(2, value.length() - 1);
value = mOverrideProps.getProperty(propName);
if (value == null) {
throw new SAXException("missing external property " + propName);
throw new SAXException(
"missing external property " + propName);
}
}
@ -114,7 +115,8 @@ class ConfigurationLoader
}
if (!mConfigStack.isEmpty()) {
DefaultConfiguration top = (DefaultConfiguration) mConfigStack.peek();
DefaultConfiguration top =
(DefaultConfiguration) mConfigStack.peek();
top.addChild(conf);
}