1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

fixes errors when no compiler info exits

This commit is contained in:
David Inglis 2002-11-06 19:26:58 +00:00
parent f41ad5443b
commit 0ba89e631c
2 changed files with 8 additions and 3 deletions

View file

@ -1,5 +1,8 @@
2002-11-01
2002-11-06 David Inglis
* src/.../ui/CUIPlugin.java
fixed NPE.
2002-11-01 David Inglis
* src/.../internal/ui/CElementLabelProvider.java
change cpu display string to use isLittleEndian method on IBinary

View file

@ -184,8 +184,10 @@ public class CUIPlugin extends AbstractUIPlugin {
}
if (fImageDescriptorRegistry != null)
fImageDescriptorRegistry.dispose();
fBuildConsoleManager.shutdown();
fBuildConsoleManager = null;
if ( fBuildConsoleManager != null ) {
fBuildConsoleManager.shutdown();
fBuildConsoleManager = null;
}
super.shutdown();
}