From 591f90c6d2319297a591530a7d3aa4822a3c81e8 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Mon, 6 Jun 2016 15:35:40 -0700 Subject: [PATCH] Cosmetics. --- .../cdt/core/dom/ast/IASTPreprocessorPragmaStatement.java | 1 - .../internal/core/parser/scanner/IncludeSearchPathElement.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTPreprocessorPragmaStatement.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTPreprocessorPragmaStatement.java index 5e65c555ccc..a4d0d88eba2 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTPreprocessorPragmaStatement.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTPreprocessorPragmaStatement.java @@ -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. */ diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/scanner/IncludeSearchPathElement.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/scanner/IncludeSearchPathElement.java index 41e143405d5..b7a5736c876 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/scanner/IncludeSearchPathElement.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/parser/scanner/IncludeSearchPathElement.java @@ -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); } }