seade 2004/05/05 18:24:36
Modified: src/java/org/apache/turbine/util/velocity
VelocityActionEvent.java
src/java/org/apache/turbine/modules/actions
VelocityAction.java
Log:
Style fixes.
Revision Changes Path
1.21 +8 -8
jakarta-turbine-2/src/java/org/apache/turbine/util/velocity/VelocityActionEvent.java
Index: VelocityActionEvent.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/util/velocity/VelocityActionEvent.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- VelocityActionEvent.java 5 May 2004 12:10:14 -0000 1.20
+++ VelocityActionEvent.java 6 May 2004 01:24:36 -0000 1.21
@@ -91,7 +91,7 @@
= new Class [] { RunData.class, Context.class };
/** Indicates whether or not this module has been initialized. */
- protected boolean initialized = false;
+ protected boolean initialized = false;
/**
* You need to implement this in your classes that extend this
@@ -108,8 +108,8 @@
*
* @throws Exception a generic exception.
*/
- protected abstract void initialize()
- throws Exception;
+ protected abstract void initialize()
+ throws Exception;
/**
* This overrides the default Action.perform() to execute the
@@ -124,10 +124,10 @@
{
try
{
- if(!initialized)
- {
- initialize();
- }
+ if (!initialized)
+ {
+ initialize();
+ }
executeEvents(data, TurbineVelocity.getContext(data));
}
catch (NoSuchMethodException e)
1.9 +7 -7
jakarta-turbine-2/src/java/org/apache/turbine/modules/actions/VelocityAction.java
Index: VelocityAction.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/modules/actions/VelocityAction.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- VelocityAction.java 5 May 2004 12:10:14 -0000 1.8
+++ VelocityAction.java 6 May 2004 01:24:36 -0000 1.9
@@ -83,17 +83,17 @@
{
doPerform(data, getContext(data));
}
-
+
/**
* Initialize the module.
*
* @throws Exception a generic exception.
*/
- public void initialize()
- throws Exception
- {
- initialized = true;
- }
+ public void initialize()
+ throws Exception
+ {
+ initialized = true;
+ }
/**
* You SHOULD override this method and implement it in your
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]