dion 2004/09/08 21:12:24
Modified: jelly/src/java/org/apache/commons/jelly JellyContext.java
Log:
Correct constants
Revision Changes Path
1.59 +2 -2
jakarta-commons/jelly/src/java/org/apache/commons/jelly/JellyContext.java
Index: JellyContext.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/jelly/src/java/org/apache/commons/jelly/JellyContext.java,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- JellyContext.java 8 Sep 2004 04:35:22 -0000 1.58
+++ JellyContext.java 9 Sep 2004 04:12:24 -0000 1.59
@@ -58,13 +58,13 @@
private JellyContext parent;
/** Default for inheritance of variables **/
- private static boolean DEFAULT_INHERIT = true;
+ private static final boolean DEFAULT_INHERIT = true;
/** Do we inherit variables from parent context? */
private boolean inherit = JellyContext.DEFAULT_INHERIT;
/** Default for export of variables **/
- private static boolean DEFAULT_EXPORT = false;
+ private static final boolean DEFAULT_EXPORT = false;
/** Do we export our variables to parent context? */
private boolean export = JellyContext.DEFAULT_EXPORT;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]