You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sc...@apache.org on 2006/06/19 17:51:28 UTC

svn commit: r415354 - /myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UISchedule.java

Author: schof
Date: Mon Jun 19 08:51:27 2006
New Revision: 415354

URL: http://svn.apache.org/viewvc?rev=415354&view=rev
Log:
Fixed JDK 1.4 compile issue

Modified:
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UISchedule.java

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UISchedule.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UISchedule.java?rev=415354&r1=415353&r2=415354&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UISchedule.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UISchedule.java Mon Jun 19 08:51:27 2006
@@ -506,7 +506,7 @@
      */
     public void setVisibleEndHour(int visibleEndHour)
     {
-        this.visibleEndHour = Integer.valueOf(visibleEndHour);
+        this.visibleEndHour = new Integer(visibleEndHour);
     }
 
     /**