You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2005/07/27 20:25:00 UTC

svn commit: r225564 - /myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java

Author: mmarinschek
Date: Wed Jul 27 11:24:52 2005
New Revision: 225564

URL: http://svn.apache.org/viewcvs?rev=225564&view=rev
Log:
tried to fix problem with addResources and RI

Modified:
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java?rev=225564&r1=225563&r2=225564&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java Wed Jul 27 11:24:52 2005
@@ -126,6 +126,11 @@
         return v != null ? v.booleanValue() : false;
     }
 
+    public void setAddResources(Boolean addResources)
+    {
+        _addResources = addResources;
+    }
+
     public void setAddResources(boolean addResources)
     {
         _addResources = Boolean.valueOf(addResources);