1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 20:35:38 +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() )
return false;
return false;
return true;
}
/* (non-Javadoc)
@ -549,20 +549,6 @@ public class CDebugTarget extends CDebugElement
{
CDebugCorePlugin.log( e );
}
/*
try
{
( (CBreakpoint)breakpoint).addToTarget( this );
if ( !getBreakpoints().contains( breakpoint ) )
{
getBreakpoints().add( breakpoint );
}
}
catch( CoreException e )
{
logError( e );
}
*/
}
}