jvanzyl 01/08/09 13:53:06
Modified: src/java/org/apache/turbine Turbine.java
Log:
- that should fix the defaultModules problem. i moved all the moduleLoader
logic into the ModuleLoader and removed it from Turbine.java.
Revision Changes Path
1.86 +1 -17 jakarta-turbine/src/java/org/apache/turbine/Turbine.java
Index: Turbine.java
===================================================================
RCS file: /home/cvs/jakarta-turbine/src/java/org/apache/turbine/Turbine.java,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- Turbine.java 2001/08/09 20:48:56 1.85
+++ Turbine.java 2001/08/09 20:53:06 1.86
@@ -110,7 +110,7 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Frank Y. Kim</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Rafal Krzewski</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
- * @version $Id: Turbine.java,v 1.85 2001/08/09 20:48:56 dlr Exp $
+ * @version $Id: Turbine.java,v 1.86 2001/08/09 20:53:06 jvanzyl Exp $
*/
public class Turbine
extends HttpServlet
@@ -140,15 +140,6 @@
private static Configuration configuration;
/**
- * A table of module names, keyed by module type.
- *
- * <p>FIXME: This class member was missing, causing compile
- * errors. I'm not sure how or where it should be
- * initialized. (dlr)
- */
- private static Hashtable defaultModules;
-
- /**
* This init method will load the default resources from a
* properties file.
*
@@ -747,13 +738,6 @@
public static Configuration getConfiguration()
{
return configuration;
- }
-
- // New module stuff
-
- public static String getDefaultModule(String moduleType)
- {
- return (String) defaultModules.get(moduleType);
}
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]