Author: jflesch
Date: 2006-06-15 20:55:06 +0000 (Thu, 15 Jun 2006)
New Revision: 9215
Modified:
trunk/apps/Thaw/src/thaw/core/Config.java
Log:
Little mistake
Modified: trunk/apps/Thaw/src/thaw/core/Config.java
===================================================================
--- trunk/apps/Thaw/src/thaw/core/Config.java 2006-06-15 20:50:02 UTC (rev
9214)
+++ trunk/apps/Thaw/src/thaw/core/Config.java 2006-06-15 20:55:06 UTC (rev
9215)
@@ -125,7 +125,6 @@
Document xmlDoc = null;
DocumentBuilderFactory xmlFactory = null;
DocumentBuilder xmlBuilder = null;
- //DOMImplementation impl = null;
Element rootEl = null;
@@ -165,7 +164,7 @@
NodeList plugins = rootEl.getElementsByTagName("plugin");
- for(int i = 0;i < params.getLength(); i++) {
+ for(int i = 0;i < plugins.getLength(); i++) {
Element pluginEl;
Node pluginNode = plugins.item(i);