1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 00:45:28 +02:00

Removed the 'fDebugTarget' field from CSharedLibraryManager.

This commit is contained in:
Mikhail Khodjaiants 2003-04-01 16:12:54 +00:00
parent 35222002bd
commit 202ea7ef21
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2003-04-01 Mikhail Khodjaiants
Removed the 'fDebugTarget' field from CSharedLibraryManager.
* CSharedLibraryManager.java
2003-03-31 Mikhail Khodjaiants
The new abstract class ('CUpdateManager') is added to provide a basic implementation of ICUpdateManager.
CSignalManager, CSharedLibraryManager and CRegisterManager extend this class.

View file

@ -26,7 +26,6 @@ import org.eclipse.debug.core.DebugException;
*/
public class CSharedLibraryManager extends CUpdateManager implements ICSharedLibraryManager
{
private CDebugTarget fDebugTarget = null;
private ArrayList fSharedLibraries;
/**
@ -43,7 +42,7 @@ public class CSharedLibraryManager extends CUpdateManager implements ICSharedLib
*/
public synchronized void sharedLibraryLoaded( ICDISharedLibrary cdiLibrary )
{
CSharedLibrary library = new CSharedLibrary( fDebugTarget, cdiLibrary );
CSharedLibrary library = new CSharedLibrary( getDebugTarget(), cdiLibrary );
fSharedLibraries.add( library );
library.fireCreationEvent();
}