You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/01/03 14:16:08 UTC

svn commit: r608473 - /myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/dateformat/DateFormatSymbols.java

Author: skitching
Date: Thu Jan  3 05:16:07 2008
New Revision: 608473

URL: http://svn.apache.org/viewvc?rev=608473&view=rev
Log:
Remove java1.6-specific code.

Modified:
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/dateformat/DateFormatSymbols.java

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/dateformat/DateFormatSymbols.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/dateformat/DateFormatSymbols.java?rev=608473&r1=608472&r2=608473&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/dateformat/DateFormatSymbols.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/dateformat/DateFormatSymbols.java Thu Jan  3 05:16:07 2008
@@ -80,7 +80,7 @@
 
 	public DateFormatSymbols(Locale l)
 	{
-		java.text.DateFormatSymbols src = java.text.DateFormatSymbols.getInstance(l);
+		java.text.DateFormatSymbols src = new java.text.DateFormatSymbols(l);
 		this.eras = src.getEras();
 		this.months = src.getMonths();
 		this.shortMonths = src.getShortMonths();