mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
[196571] [refresh] DELETE_MANY event leads to AssertionError: null argument
This commit is contained in:
parent
d08769453a
commit
0cce191cc3
1 changed files with 1 additions and 1 deletions
|
@ -1904,7 +1904,7 @@ public class SystemView extends SafeTreeViewer
|
|||
wasSelected = isSelectedOrChildSelected(multiSource);
|
||||
if (wasSelected) clearSelection();
|
||||
if (_originatingViewer != null) _originatingViewer.remove(multiSource);
|
||||
if (wasSelected) setSelection(new StructuredSelection(parent), true);
|
||||
if (wasSelected) setSelection(parent != null ? new StructuredSelection(parent) : null, true);
|
||||
}
|
||||
break;
|
||||
/* Now done below in systemRemoteResourceChanged
|
||||
|
|
Loading…
Add table
Reference in a new issue