1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Reverting back to previous version. Not ready to commit yet.

This commit is contained in:
Vladimir Hirsl 2004-10-19 22:00:22 +00:00
parent 45c33ef2aa
commit cb264b92c7

View file

@ -12,7 +12,6 @@ package org.eclipse.cdt.make.internal.core.scannerconfig.util;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
/**
* Tracebility related utility functions
@ -78,21 +77,4 @@ public class TraceUtil {
System.out.println("Error: " + string + line); //$NON-NLS-1$
}
}
/**
* @param string
* @param string2
* @param string3
* @param map - map of
*/
public static void metricsTrace(String title, String subtitlePrefix, String subtitlePostfix, Map map) {
System.out.println();
System.out.println(title);
for (Iterator i = map.keySet().iterator(); i.hasNext(); ) {
String dir = (String) i.next();
System.out.println(subtitlePrefix + dir + subtitlePostfix);
List directoryCommandList = (List) map.get(dir);
}
}
}