1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 12:55:40 +02:00

Bug 155195 - Make a couple of methods public.

This commit is contained in:
Doug Schaefer 2007-05-24 16:14:34 +00:00
parent 825e48a310
commit 1740bc2343
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ public abstract class AbstractGCCBOPConsoleParserUtility {
/** /**
* @return Returns the fBaseDirectory. * @return Returns the fBaseDirectory.
*/ */
protected IPath getBaseDirectory() { public IPath getBaseDirectory() {
return fBaseDirectory; return fBaseDirectory;
} }
/** /**

View file

@ -195,7 +195,7 @@ public class GCCPerFileBOPConsoleParserUtility extends AbstractGCCBOPConsolePars
* @param filePath : String * @param filePath : String
* @return filePath : IPath - not <code>null</code> * @return filePath : IPath - not <code>null</code>
*/ */
IPath getAbsolutePath(String filePath) { public IPath getAbsolutePath(String filePath) {
IPath pFilePath; IPath pFilePath;
if (filePath.startsWith("/")) { //$NON-NLS-1$ if (filePath.startsWith("/")) { //$NON-NLS-1$
return convertCygpath(new Path(filePath)); return convertCygpath(new Path(filePath));