mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 06:45:43 +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)
|
||||
case 3 :
|
||||
|
||||
if (!(subsystem.getSubSystemConfiguration().supportsFilters())) {
|
||||
if (subsystem != null && !(subsystem.getSubSystemConfiguration().supportsFilters())) {
|
||||
remoteObject = new RemoteObject(token, subsystem, null, null);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue