Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 107821
Collapse All | Expand All

(-)index/org/eclipse/cdt/internal/core/index/ctagsindexer/CTagsFileReader.java (-2 / +2 lines)
Lines 79-86 Link Here
79
			   
79
			   
80
			   String fileName = tagEntry.fileName;
80
			   String fileName = tagEntry.fileName;
81
			   
81
			   
82
		   if (currentFileName == null ||
82
		   if ((currentFileName == null ||
83
			      (!currentFileName.equals(fileName))){
83
			      (!currentFileName.equals(fileName))) && !fileName.equals("")){
84
			      currentFileName = fileName; 
84
			      currentFileName = fileName; 
85
			      currentFile = (IFile) project.findMember(fileName);
85
			      currentFile = (IFile) project.findMember(fileName);
86
				  
86
				  

Return to bug 107821