From 1290626b1ed850271494fde63641d4983eaffe20 Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Thu, 20 Feb 2003 20:26:54 +0000 Subject: [PATCH] Changed to 'public' the access modifier of the 'setAssocition' method. --- debug/org.eclipse.cdt.debug.core/ChangeLog | 4 ++++ .../internal/core/sourcelookup/CDirectorySourceLocation.java | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; }