Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Changed to 'public' the access modifier of the 'setAssocition' method

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.135
diff -u -r1.135 ChangeLog
--- ChangeLog 18 Feb 2003 19:24:08 -0000 1.135
+++ ChangeLog 20 Feb 2003 20:25:06 -0000
@@ -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
Index: CDirectorySourceLocation.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/sourcelookup/CDirectorySourceLocation.java,v
retrieving revision 1.5
diff -u -r1.5 CDirectorySourceLocation.java
--- CDirectorySourceLocation.java 18 Feb 2003 19:24:08 -0000 1.5
+++ CDirectorySourceLocation.java 20 Feb 2003 20:25:19 -0000
@@ -135,7 +135,7 @@
   fDirectory = path;
  }
 
- private void setAssociation( IPath association )
+ public void setAssociation( IPath association )
  {
   fAssociation = association;
  }

Back to the top