1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-01 13:25:45 +02:00

For now return true for all breakpoints.

This commit is contained in:
Mikhail Khodjaiants 2002-09-02 20:41:16 +00:00
parent f1fcf7e551
commit 1f2942e78e

View file

@ -313,7 +313,7 @@ public class CDebugTarget extends CDebugElement
{ {
if ( !getConfiguration().supportsBreakpoints() ) if ( !getConfiguration().supportsBreakpoints() )
return false; return false;
return false; return true;
} }
/* (non-Javadoc) /* (non-Javadoc)
@ -549,20 +549,6 @@ public class CDebugTarget extends CDebugElement
{ {
CDebugCorePlugin.log( e ); CDebugCorePlugin.log( e );
} }
/*
try
{
( (CBreakpoint)breakpoint).addToTarget( this );
if ( !getBreakpoints().contains( breakpoint ) )
{
getBreakpoints().add( breakpoint );
}
}
catch( CoreException e )
{
logError( e );
}
*/
} }
} }