in command-line-debugger/src/main/java/org/apache/ant/debugger/DefaultAuditor.java [70:94]
public void execute(Project project, String[] params) {
if (params.length > 1 && "/?".equals(params[1])) {
printUsage(project);
return;
}
if (params.length != 2) {
project.log("Incorrect Parameters");
printUsage(project);
return;
}
String property = params[1];
List changes = getAuditsForProperty(property);
if (changes != null) {
project.log("Found " + changes.size()
+ " Attempted Changes to Property: " + property);
Iterator it = changes.iterator();
while (it.hasNext()) {
project.log(" - " + (String) it.next());
}
} else {
project.log(" - No records found for Property: " + property);
}
}