mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-15 04:05:38 +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)
|
if (activePage == null)
|
||||||
{
|
{
|
||||||
IWorkbenchWindow activeWindow = wb.getActiveWorkbenchWindow();
|
IWorkbenchWindow activeWindow = wb.getActiveWorkbenchWindow();
|
||||||
if (activeWindow == null)
|
if (activeWindow != null)
|
||||||
{
|
{
|
||||||
activePage = activeWindow.getActivePage();
|
activePage = activeWindow.getActivePage();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue