From daf11384005242200202b56f5ded5f9704777ca7 Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Sat, 26 Jan 2002 12:03:31 +0000 Subject: [PATCH] Remove unused method and variables Removing a Audit violation git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270881 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/myrmidon/frontends/CLIMain.java | 21 ------------------- 1 file changed, 21 deletions(-) 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 ); - } - } }