1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

"CDebugTarget" should provide an adapter for "ICDebugTarget".

This commit is contained in:
Mikhail Khodjaiants 2004-06-11 21:44:46 +00:00
parent c939dec941
commit 181779924b
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2004-06-11 Mikhail Khodjaiants
"CDebugTarget" should provide an adapter for "ICDebugTarget".
* CDebugTarget.java
2004-06-09 Mikhail Khodjaiants
Changed the synchronization scope.
* CSharedLibraryManager.java

View file

@ -966,6 +966,8 @@ public class CDebugTarget extends CDebugElement
{
if ( adapter.equals( IDebugTarget.class ) )
return this;
if ( adapter.equals( ICDebugTarget.class ) )
return this;
if ( adapter.equals( CDebugTarget.class ) )
return this;
if ( adapter.equals( ICDITarget.class ) )