[jboss-cvs] jboss-seam/src/pdf/org/jboss/seam/pdf/ui ...
Norman Richards
norman.richards at jboss.com
Wed Jan 24 17:31:41 EST 2007
User: nrichards
Date: 07/01/24 17:31:41
Modified: src/pdf/org/jboss/seam/pdf/ui UIOutputText.java
Log:
cleanup
Revision Changes Path
1.2 +2 -6 jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIOutputText.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: UIOutputText.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIOutputText.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- UIOutputText.java 24 Jan 2007 21:55:45 -0000 1.1
+++ UIOutputText.java 24 Jan 2007 22:31:41 -0000 1.2
@@ -23,19 +23,15 @@
public void encodeEnd(FacesContext context)
throws IOException
{
- String stringValue;
+ String stringValue = "";
Object myValue = getValue();
- System.out.println("VALUE IS: " + myValue);
- System.out.println("converter: " + converter);
if (converter != null) {
stringValue = converter.getAsString(context, this, myValue);
} else {
if (myValue != null) {
stringValue = myValue.toString();
- } else {
- stringValue = "XXX no value";
}
}
More information about the jboss-cvs-commits
mailing list