1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Check if viewer is not null.

This commit is contained in:
Mikhail Khodjaiants 2002-09-26 18:52:25 +00:00
parent dbba92a00a
commit d6a463033a

View file

@ -216,6 +216,11 @@ public class RegistersView extends AbstractDebugEventHandlerView
}
}
if ( getViewer() == null )
{
return;
}
Object current = getViewer().getInput();
if ( current == null && frame == null )
{