1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Check for null.

This commit is contained in:
Alain Magloire 2002-08-20 04:15:31 +00:00
parent 485e389263
commit af0a71b0f1

View file

@ -132,6 +132,9 @@ public class CLocalVariable extends CModificationVariable
public void handleDebugEvent( ICDIEvent event )
{
ICDIObject source = event.getSource();
if (source == null)
return;
if ( source.getTarget().equals( getCDITarget() ) )
{
if ( event instanceof ICDIChangedEvent )