mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-28 19:35:36 +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
|
2003-03-31 Mikhail Khodjaiants
|
||||||
The new abstract class ('CUpdateManager') is added to provide a basic implementation of ICUpdateManager.
|
The new abstract class ('CUpdateManager') is added to provide a basic implementation of ICUpdateManager.
|
||||||
CSignalManager, CSharedLibraryManager and CRegisterManager extend this class.
|
CSignalManager, CSharedLibraryManager and CRegisterManager extend this class.
|
||||||
|
|
|
@ -26,7 +26,6 @@ import org.eclipse.debug.core.DebugException;
|
||||||
*/
|
*/
|
||||||
public class CSharedLibraryManager extends CUpdateManager implements ICSharedLibraryManager
|
public class CSharedLibraryManager extends CUpdateManager implements ICSharedLibraryManager
|
||||||
{
|
{
|
||||||
private CDebugTarget fDebugTarget = null;
|
|
||||||
private ArrayList fSharedLibraries;
|
private ArrayList fSharedLibraries;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,7 +42,7 @@ public class CSharedLibraryManager extends CUpdateManager implements ICSharedLib
|
||||||
*/
|
*/
|
||||||
public synchronized void sharedLibraryLoaded( ICDISharedLibrary cdiLibrary )
|
public synchronized void sharedLibraryLoaded( ICDISharedLibrary cdiLibrary )
|
||||||
{
|
{
|
||||||
CSharedLibrary library = new CSharedLibrary( fDebugTarget, cdiLibrary );
|
CSharedLibrary library = new CSharedLibrary( getDebugTarget(), cdiLibrary );
|
||||||
fSharedLibraries.add( library );
|
fSharedLibraries.add( library );
|
||||||
library.fireCreationEvent();
|
library.fireCreationEvent();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue