diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index b5525b50959..3842af72616 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2003-02-20 Mikhail Khodjaiants + Changed to 'public' the access modifier of the 'setAssocition' method. + * CDirectorySourceLocation.java + 2003-02-18 Mikhail Khodjaiants Added persistency to the source locator. * plugin.xml: added dependency on the 'org.apache.xerces' plugin diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/sourcelookup/CDirectorySourceLocation.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/sourcelookup/CDirectorySourceLocation.java index 93d0b289964..28082d1d44f 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/sourcelookup/CDirectorySourceLocation.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/sourcelookup/CDirectorySourceLocation.java @@ -135,7 +135,7 @@ public class CDirectorySourceLocation implements IDirectorySourceLocation fDirectory = path; } - private void setAssociation( IPath association ) + public void setAssociation( IPath association ) { fAssociation = association; }