1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 01:45:33 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2016-06-06 15:35:40 -07:00
parent cc2e7dc5b0
commit 591f90c6d2
2 changed files with 1 additions and 2 deletions

View file

@ -19,7 +19,6 @@ package org.eclipse.cdt.core.dom.ast;
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IASTPreprocessorPragmaStatement extends IASTPreprocessorStatement {
/**
* Returns the pragma message.
*/

View file

@ -72,7 +72,7 @@ public final class IncludeSearchPathElement {
String framework = includeDirective.substring(0, firstSep);
String file = includeDirective.substring(firstSep + 1);
if (file.length() > 0) {
if (fPath.endsWith(framework + FRAMEWORK_HEADERS)) { //$NON-NLS-1$
if (fPath.endsWith(framework + FRAMEWORK_HEADERS)) {
return ScannerUtility.createReconciledPath(fPath, file);
}
}