Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/parser/IAutoconfMacroValidator.java')
-rw-r--r--build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/parser/IAutoconfMacroValidator.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/parser/IAutoconfMacroValidator.java b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/parser/IAutoconfMacroValidator.java
index 2e6ea331a04..a6935dc6ebe 100644
--- a/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/parser/IAutoconfMacroValidator.java
+++ b/build/org.eclipse.cdt.autotools.ui/src/org/eclipse/cdt/autotools/ui/editors/parser/IAutoconfMacroValidator.java
@@ -14,7 +14,6 @@
package org.eclipse.cdt.autotools.ui.editors.parser;
-
/**
* Clients implement this interface to validate macro calls.
* @author eswartz
@@ -25,7 +24,7 @@ public interface IAutoconfMacroValidator {
/**
* Validate the given macro call.
* @param element macro call, never <code>null</code>
- * @throws ParseException if the call doesn't match the expected number of elements
+ * @throws ParseException if the call doesn't match the expected number of elements
*/
void validateMacroCall(AutoconfMacroElement element) throws ParseException, InvalidMacroException;
}

Back to the top