1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
David Inglis 2004-03-29 17:01:10 +00:00
parent c1b941c286
commit c48f2afafa
2 changed files with 7 additions and 1 deletions

View file

@ -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 2004-03-26 David Inglis
Fixed NPE on path reorder Fixed NPE on path reorder

View file

@ -207,7 +207,6 @@ public class CCorePlugin extends Plugin {
* @see Plugin#shutdown * @see Plugin#shutdown
*/ */
public void shutdown() throws CoreException { public void shutdown() throws CoreException {
super.shutdown();
if (fDescriptorManager != null) { if (fDescriptorManager != null) {
fDescriptorManager.shutdown(); fDescriptorManager.shutdown();
} }
@ -219,6 +218,7 @@ public class CCorePlugin extends Plugin {
if (cdtLog != null) { if (cdtLog != null) {
cdtLog.shutdown(); cdtLog.shutdown();
} }
super.shutdown();
} }
/** /**