grantsmith 2005/04/25 11:43:19
Modified: doc developer-notes.txt
src/jsfapi/javax/faces/component UIInput.java
Log:
MYFACES-187 - Comment out submittedValue - testing required
Revision Changes Path
1.18 +6 -3 incubator-myfaces/doc/developer-notes.txt
Index: developer-notes.txt
===================================================================
RCS file: /home/cvs/incubator-myfaces/doc/developer-notes.txt,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- developer-notes.txt 13 Apr 2005 13:15:49 -0000 1.17
+++ developer-notes.txt 25 Apr 2005 18:43:19 -0000 1.18
@@ -58,7 +58,7 @@
* Communication
- Main communication instrument among MyFaces developers is the MyFaces
- developer mailing list (myfaces-dev@incubator.apache.org).
+ developer mailing list (dev@myfaces.apache.org).
- Every active MyFaces developer must subscribe to this list.
* Copyright
@@ -87,6 +87,9 @@
* @author Bug Rogers (latest modification by $Author$)
* @version $Revision$ $Date$
* $Log$
+ * Revision 1.18 2005/04/25 18:43:19 grantsmith
+ * MYFACES-187 - Comment out submittedValue - testing required
+ *
* Revision 1.17 2005/04/13 13:15:49 manolito
* link to Apache-Wide Coding Style Guide
*
1.18 +14 -9 incubator-myfaces/src/jsfapi/javax/faces/component/UIInput.java
Index: UIInput.java
===================================================================
RCS file: /home/cvs/incubator-myfaces/src/jsfapi/javax/faces/component/UIInput.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- UIInput.java 12 Apr 2005 12:41:48 -0000 1.17
+++ UIInput.java 25 Apr 2005 18:43:19 -0000 1.18
@@ -1,12 +1,12 @@
/*
* Copyright 2004 The Apache Software Foundation.
- *
+ *
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -37,8 +37,11 @@
* @author Manfred Geiler (latest modification by $Author$)
* @version $Revision$ $Date$
* $Log$
+ * Revision 1.18 2005/04/25 18:43:19 grantsmith
+ * MYFACES-187 - Comment out submittedValue - testing required
+ *
* Revision 1.17 2005/04/12 12:41:48 manolito
- * PR: MYFACES-179
+ * PR: MYFACES-179
* Submitted by: Mathias Broekelmann
*
* Revision 1.16 2005/03/04 00:28:45 mmarinschek
@@ -288,10 +291,11 @@
Object submittedValue = getSubmittedValue();
if (submittedValue == null) return;
- if(submittedValue instanceof String && ((String) submittedValue).length()==0)
- {
- submittedValue = null;
- }
+// if(submittedValue instanceof String && ((String) submittedValue).length()==0)
+// {
+// submittedValue = null;
+// }
+//todo: Remove commented code if all tests pass
Object convertedValue = getConvertedValue(context, submittedValue);
|