1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 07:15:39 +02:00

trivial update - null pointer check

This commit is contained in:
David McKnight 2009-03-19 21:20:41 +00:00
parent 0eeba78676
commit 7b6208c5cd

View file

@ -1299,7 +1299,7 @@ public class SystemViewPart
// filter pool or filter (depends on showFilterPools) // filter pool or filter (depends on showFilterPools)
case 3 : case 3 :
if (!(subsystem.getSubSystemConfiguration().supportsFilters())) { if (subsystem != null && !(subsystem.getSubSystemConfiguration().supportsFilters())) {
remoteObject = new RemoteObject(token, subsystem, null, null); remoteObject = new RemoteObject(token, subsystem, null, null);
break; break;
} }