mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
This commit is contained in:
parent
c1b941c286
commit
c48f2afafa
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-03-29 David Inglis
|
||||
|
||||
Fixed shutdown problems. https://bugs.eclipse.org/bugs/show_bug.cgi?id=56584
|
||||
|
||||
* src/org/eclipse/cdt/core/CCorePlugin.java
|
||||
|
||||
2004-03-26 David Inglis
|
||||
|
||||
Fixed NPE on path reorder
|
||||
|
|
|
@ -207,7 +207,6 @@ public class CCorePlugin extends Plugin {
|
|||
* @see Plugin#shutdown
|
||||
*/
|
||||
public void shutdown() throws CoreException {
|
||||
super.shutdown();
|
||||
if (fDescriptorManager != null) {
|
||||
fDescriptorManager.shutdown();
|
||||
}
|
||||
|
@ -219,6 +218,7 @@ public class CCorePlugin extends Plugin {
|
|||
if (cdtLog != null) {
|
||||
cdtLog.shutdown();
|
||||
}
|
||||
super.shutdown();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue