removed System.out.println

This commit is contained in:
Lars Kühne 2002-11-30 18:48:47 +00:00
parent 46e7bd70f9
commit 42bf430386
1 changed files with 0 additions and 4 deletions

View File

@ -92,12 +92,10 @@ class ConfigurationLoader
{
// TODO: debug logging for support puposes
DefaultConfiguration conf = new DefaultConfiguration(aQName);
System.out.println("aQName = " + aQName);
final int attCount = aAtts.getLength();
for (int i = 0; i < attCount; i++) {
String name = aAtts.getQName(i);
String value = aAtts.getValue(i);
System.out.println(" value of " + name + " is " + value);
// expand properties
if (value.startsWith("${") && value.endsWith("}")) {
@ -106,8 +104,6 @@ class ConfigurationLoader
if (value == null) {
throw new SAXException("missing external property " + propName);
}
System.out.println(" propName = " + propName);
System.out.println(" new value = " + value);
}
conf.addAttribute(name, value);