donaldp 02/05/20 03:21:50
Modified: src/test/org/apache/avalon/cornerstone/services/scheduler/test
CronTimeTriggerTestCase.java
Log:
final static to static final to comply with JLS recomendations.
Revision Changes Path
1.4 +4 -4
jakarta-avalon-cornerstone/src/test/org/apache/avalon/cornerstone/services/scheduler/test/CronTimeTriggerTestCase.java
Index: CronTimeTriggerTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-cornerstone/src/test/org/apache/avalon/cornerstone/services/scheduler/test/CronTimeTriggerTestCase.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- CronTimeTriggerTestCase.java 11 Dec 2001 10:49:21 -0000 1.3
+++ CronTimeTriggerTestCase.java 20 May 2002 10:21:50 -0000 1.4
@@ -20,10 +20,10 @@
public final class CronTimeTriggerTestCase
extends TestCase
{
- protected final static long MINUTE = 60000;
- protected final static long HOUR = 60 * MINUTE;
- protected final static long DAY = 24 * HOUR;
- protected final static long WEEK = 7 * DAY;
+ protected static final long MINUTE = 60000;
+ protected static final long HOUR = 60 * MINUTE;
+ protected static final long DAY = 24 * HOUR;
+ protected static final long WEEK = 7 * DAY;
public CronTimeTriggerTestCase( final String name )
{
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>