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:
parent
825e48a310
commit
1740bc2343
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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));
|
||||||
|
|
Loading…
Add table
Reference in a new issue