diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java b/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java index 81ea947a1..0749df663 100644 --- a/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java +++ b/proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java @@ -84,8 +84,6 @@ public class CLIMain QUIET_OPT, VERBOSE_OPT, LOG_LEVEL_OPT }; - private ProjectListener m_listener; - ///Parameters for run of myrmidon private Parameters m_parameters = new Parameters(); @@ -494,24 +492,5 @@ public class CLIMain throw new Exception( message ); } } - - /** - * Helper method to add values to a context - * - * @param context the context - * @param map the map of names->values - */ - private void addToContext( final TaskContext context, final Map map ) - throws Exception - { - final Iterator keys = map.keySet().iterator(); - - while( keys.hasNext() ) - { - final String key = (String)keys.next(); - final Object value = map.get( key ); - context.setProperty( key, value ); - } - } }