1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 15:05:36 +02:00

do not do any quick start. here.

This commit is contained in:
Alain Magloire 2002-11-12 22:17:06 +00:00
parent 0f475ccc84
commit 4d8caa5769

View file

@ -45,11 +45,10 @@ public class CTagsRunner implements Runnable {
Map projectsMap = manager.getProjectsMap();
Map filesMap = (Map)projectsMap.get(project.getLocation());
if (filesMap == null) {
Map m = Collections.synchronizedMap(new HashMap());
projectsMap.put(project.getLocation(), m);
// Kick Start;
manager.addContainer(project);
} else {
filesMap = Collections.synchronizedMap(new HashMap());
projectsMap.put(project.getLocation(), filesMap);
}
try {
CTagsCmd cmd = new CTagsCmd();
IFile file = (IFile)resource;
@ -61,7 +60,6 @@ public class CTagsRunner implements Runnable {
} catch (IOException e) {
}
//System.out.println("indexing " + resource.getName());
}
break;
case IResource.FOLDER: