donaldp 2002/07/04 20:38:47
Modified: framework/src/todo/org/apache/tools/todo/taskdefs/text
Replacefilter.java
Log:
Remove redundent cast
Revision Changes Path
1.3 +1 -1 jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/Replacefilter.java
Index: Replacefilter.java
===================================================================
RCS file: /home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/taskdefs/text/Replacefilter.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Replacefilter.java 5 Jul 2002 03:22:02 -0000 1.2
+++ Replacefilter.java 5 Jul 2002 03:38:47 -0000 1.3
@@ -45,7 +45,7 @@
{
if( m_property != null )
{
- return (String)m_replace.getProperties().getProperty( m_property );
+ return m_replace.getProperties().getProperty( m_property );
}
else if( m_value != null )
{
--
To unsubscribe, e-mail: <mailto:ant-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:ant-dev-help@jakarta.apache.org>
|