Matt Benson wrote:
--- [EMAIL PROTECTED] wrote:
ant/core/trunk/src/main/org/apache/tools/ant/types/resources/PropertyResource.java
Sun Jun 11 15:00:52 2006
@@ -107,8 +107,7 @@
         if (isReference()) {
             return getCheckedRef().toString();
         }
-        return getName()!=null?("${"+getName()+"}")
-                :"null";
+        return String.valueOf(getValue());
     }

What if we make PropertyResource's toString()
contingent on whether the property is set.  An unset
property might evaluate to something like "${" +
getName() + "} (unset)" and a set (immutable) property
to getValue() ?


that would be even cooler :)

there is also a toLongString() operation that I havent gone near yet; I was just tweaking the various resources so that toString() was meaningful in them.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to