mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-03 14:25:37 +02:00
Apply patch for bug 150924 - NPE in monitor when disconnecting daytime
This commit is contained in:
parent
66b4cc7750
commit
6e04109109
1 changed files with 4 additions and 1 deletions
|
@ -143,7 +143,10 @@ FocusListener
|
|||
if (children != null)
|
||||
{
|
||||
SystemTableTreeViewProvider provider = (SystemTableTreeViewProvider)_viewer.getContentProvider();
|
||||
provider.setCache(children);
|
||||
if (provider!=null) {
|
||||
//bug 150924: provider can be lost when disconnecting while this job runs
|
||||
provider.setCache(children);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue