You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by pm...@apache.org on 2007/07/05 14:25:29 UTC

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

Author: pmahoney
Date: Thu Jul  5 05:25:29 2007
New Revision: 553474

URL: http://svn.apache.org/viewvc?view=rev&rev=553474
Log:
TOMAHAWK-1044: Use Integer constructor rather than Integer.valueOf, for Java 1.4 compatibility

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

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UIScheduleBase.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UIScheduleBase.java?view=diff&rev=553474&r1=553473&r2=553474
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UIScheduleBase.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/schedule/UIScheduleBase.java Thu Jul  5 05:25:29 2007
@@ -366,7 +366,7 @@
      */
     public void setCompactMonthRowHeight(int compactMonthRowHeight)
     {
-        this._compactMonthRowHeight = Integer.valueOf(compactMonthRowHeight);
+        this._compactMonthRowHeight = new Integer(compactMonthRowHeight);
     }
 
     /**
@@ -374,7 +374,7 @@
      */
     public void setCompactWeekRowHeight(int compactWeekRowHeight)
     {
-        this._compactWeekRowHeight = Integer.valueOf(compactWeekRowHeight);
+        this._compactWeekRowHeight = new Integer(compactWeekRowHeight);
     }
 
     /**
@@ -390,7 +390,7 @@
      */
     public void setDetailedRowHeight(int detailedRowHeight)
     {
-        this._detailedRowHeight = Integer.valueOf(detailedRowHeight);
+        this._detailedRowHeight = new Integer(detailedRowHeight);
     }
 
     /**
@@ -472,7 +472,7 @@
      */
     public void setVisibleEndHour(int visibleEndHour)
     {
-        this._visibleEndHour = Integer.valueOf(visibleEndHour);
+        this._visibleEndHour = new Integer(visibleEndHour);
     }
 
     /**
@@ -480,7 +480,7 @@
      */
     public void setVisibleStartHour(int visibleStartHour)
     {
-        this._visibleStartHour = Integer.valueOf(visibleStartHour);
+        this._visibleStartHour = new Integer(visibleStartHour);
     }
     
     /**
@@ -488,7 +488,7 @@
      */
     public void setWorkingEndHour(int workingEndHour)
     {
-        this._workingEndHour = Integer.valueOf(workingEndHour);
+        this._workingEndHour = new Integer(workingEndHour);
     }
 
     /**
@@ -496,7 +496,7 @@
      */
     public void setWorkingStartHour(int workingStartHour)
     {
-        this._workingStartHour = Integer.valueOf(workingStartHour);
+        this._workingStartHour = new Integer(workingStartHour);
     }
     
     /**