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:
parent
35222002bd
commit
202ea7ef21
2 changed files with 5 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue