dgraham 2003/02/04 16:51:41
Modified: src/share/org/apache/struts/config ModuleConfigFactory.java
Log:
Removed transient from static variables because statics aren't serialized anyways.
Revision Changes Path
1.4 +6 -6
jakarta-struts/src/share/org/apache/struts/config/ModuleConfigFactory.java
Index: ModuleConfigFactory.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/config/ModuleConfigFactory.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ModuleConfigFactory.java 4 Feb 2003 02:34:09 -0000 1.3
+++ ModuleConfigFactory.java 5 Feb 2003 00:51:40 -0000 1.4
@@ -139,12 +139,12 @@
* The Java class to be used for
* <code>ModuleConfigFactory</code> instances.
*/
- protected static transient Class clazz = null;
+ protected static Class clazz = null;
/**
* Commons Logging instance.
*/
- private static transient Log LOG = LogFactory.getLog(ModuleConfigFactory.class);
+ private static Log LOG = LogFactory.getLog(ModuleConfigFactory.class);
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]