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:
parent
0eeba78676
commit
7b6208c5cd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue