mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 15:15:25 +02:00
code bug using == instead of !=
This commit is contained in:
parent
82dd0450cc
commit
1fb22d2108
1 changed files with 1 additions and 1 deletions
|
@ -971,7 +971,7 @@ public class SystemEditableRemoteFile implements ISystemEditableRemoteObject, IP
|
|||
if (activePage == null)
|
||||
{
|
||||
IWorkbenchWindow activeWindow = wb.getActiveWorkbenchWindow();
|
||||
if (activeWindow == null)
|
||||
if (activeWindow != null)
|
||||
{
|
||||
activePage = activeWindow.getActivePage();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue