mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-21 07:55:24 +02:00
do not do any quick start. here.
This commit is contained in:
parent
0f475ccc84
commit
4d8caa5769
1 changed files with 14 additions and 16 deletions
|
@ -45,11 +45,10 @@ public class CTagsRunner implements Runnable {
|
||||||
Map projectsMap = manager.getProjectsMap();
|
Map projectsMap = manager.getProjectsMap();
|
||||||
Map filesMap = (Map)projectsMap.get(project.getLocation());
|
Map filesMap = (Map)projectsMap.get(project.getLocation());
|
||||||
if (filesMap == null) {
|
if (filesMap == null) {
|
||||||
Map m = Collections.synchronizedMap(new HashMap());
|
filesMap = Collections.synchronizedMap(new HashMap());
|
||||||
projectsMap.put(project.getLocation(), m);
|
projectsMap.put(project.getLocation(), filesMap);
|
||||||
// Kick Start;
|
}
|
||||||
manager.addContainer(project);
|
|
||||||
} else {
|
|
||||||
try {
|
try {
|
||||||
CTagsCmd cmd = new CTagsCmd();
|
CTagsCmd cmd = new CTagsCmd();
|
||||||
IFile file = (IFile)resource;
|
IFile file = (IFile)resource;
|
||||||
|
@ -61,7 +60,6 @@ public class CTagsRunner implements Runnable {
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
}
|
}
|
||||||
//System.out.println("indexing " + resource.getName());
|
//System.out.println("indexing " + resource.getName());
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case IResource.FOLDER:
|
case IResource.FOLDER:
|
||||||
|
|
Loading…
Add table
Reference in a new issue