diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/components/configurer/DefaultConfigurer.java b/proposal/myrmidon/src/java/org/apache/myrmidon/components/configurer/DefaultConfigurer.java index 2c65a6bfa..cfe256750 100644 --- a/proposal/myrmidon/src/java/org/apache/myrmidon/components/configurer/DefaultConfigurer.java +++ b/proposal/myrmidon/src/java/org/apache/myrmidon/components/configurer/DefaultConfigurer.java @@ -419,18 +419,10 @@ public class DefaultConfigurer final TaskContext context ) 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 ); } /**