ggregory 2003/07/19 18:21:29
Modified: lang/src/java/org/apache/commons/lang/time
FastDateFormat.java
Log:
Severity Description Resource In Folder Location
Creation Time
The static field DateFormat.FULL should be accessed directly
FastDateFormat.java Apache Jakarta
Commons/lang/src/java/org/apache/commons/lang/time line 112 July 19, 2003
5:17:12 PM
The static field DateFormat.LONG should be accessed directly
FastDateFormat.java Apache Jakarta
Commons/lang/src/java/org/apache/commons/lang/time line 116 July 19, 2003
5:17:12 PM
The static field DateFormat.MEDIUM should be accessed directly
FastDateFormat.java Apache Jakarta
Commons/lang/src/java/org/apache/commons/lang/time line 120 July 19, 2003
5:17:12 PM
The static field DateFormat.SHORT should be accessed directly
FastDateFormat.java Apache Jakarta
Commons/lang/src/java/org/apache/commons/lang/time line 124 July 19, 2003
5:17:12 PM
Revision Changes Path
1.10 +5 -5
jakarta-commons/lang/src/java/org/apache/commons/lang/time/FastDateFormat.java
Index: FastDateFormat.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/time/FastDateFormat.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- FastDateFormat.java 19 Jul 2003 19:54:24 -0000 1.9
+++ FastDateFormat.java 20 Jul 2003 01:21:29 -0000 1.10
@@ -109,19 +109,19 @@
/**
* FULL locale dependent date or time style.
*/
- public static final int FULL = SimpleDateFormat.FULL;
+ public static final int FULL = DateFormat.FULL;
/**
* LONG locale dependent date or time style
*/
- public static final int LONG = SimpleDateFormat.LONG;
+ public static final int LONG = DateFormat.LONG;
/**
* MEDIUM locale dependent date or time style
*/
- public static final int MEDIUM = SimpleDateFormat.MEDIUM;
+ public static final int MEDIUM = DateFormat.MEDIUM;
/**
* SHORT locale dependent date or time style
*/
- public static final int SHORT = SimpleDateFormat.SHORT;
+ public static final int SHORT = DateFormat.SHORT;
// package scoped as used by inner class
static final double LOG_10 = Math.log(10);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]