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:
parent
f1fcf7e551
commit
1f2942e78e
1 changed files with 1 additions and 15 deletions
|
@ -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 );
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue