Browse Source

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
master
Peter Donald 23 years ago
parent
commit
daf1138400
1 changed files with 0 additions and 21 deletions
  1. +0
    -21
      proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java

+ 0
- 21
proposal/myrmidon/src/java/org/apache/myrmidon/frontends/CLIMain.java View File

@@ -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 );
}
}
}


Loading…
Cancel
Save