1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix for 199929: Main thread hangs due to deadlock whilst indexing

This commit is contained in:
Anton Leherbauer 2007-08-22 07:27:51 +00:00
parent d05ba10574
commit 3cb5d2cb12

View file

@ -380,10 +380,6 @@ public class TranslationUnit extends Openable implements ITranslationUnit {
return (WorkingCopy) perFactoryWorkingCopies.get(this);
}
public synchronized boolean isOpen() {
return super.isOpen();
}
public synchronized CElementInfo getElementInfo(IProgressMonitor monitor) throws CModelException {
return super.getElementInfo(monitor);
}