mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Added toString method.
This commit is contained in:
parent
7f07eb597c
commit
c4d354c7a9
1 changed files with 11 additions and 4 deletions
|
@ -20,7 +20,6 @@ final class IncludeSearchPathElement {
|
|||
public static final String FRAMEWORK_VAR = "__framework__"; //$NON-NLS-1$
|
||||
public static final String FILE_VAR = "__header__"; //$NON-NLS-1$
|
||||
|
||||
|
||||
private final String fPath;
|
||||
private final boolean fForQuoteIncludesOnly;
|
||||
private final boolean fIsFrameworkDirectory;
|
||||
|
@ -73,4 +72,12 @@ final class IncludeSearchPathElement {
|
|||
buf.replace(idx, idx + find.length(), replace);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* For debugging only.
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return fPath;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue