Browse Source

Remove the -ref construct from attributes.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272211 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
664ecfc459
1 changed files with 4 additions and 12 deletions
  1. +4
    -12
      proposal/myrmidon/src/java/org/apache/myrmidon/components/configurer/DefaultConfigurer.java

+ 4
- 12
proposal/myrmidon/src/java/org/apache/myrmidon/components/configurer/DefaultConfigurer.java View File

@@ -419,18 +419,10 @@ public class DefaultConfigurer
final TaskContext context ) final TaskContext context )
throws Exception throws Exception
{ {
if( name.toLowerCase().endsWith( "-ref" ) )
{
// A reference
setReference( state, name, value, context, false );
}
else
{
// Set the value
final PropertyConfigurer property =
getConfigurerFromName( state.getConfigurer(), name, false, false );
setValue( property, state, value, context );
}
// Set the value
final PropertyConfigurer property =
getConfigurerFromName( state.getConfigurer(), name, false, false );
setValue( property, state, value, context );
} }


/** /**


Loading…
Cancel
Save