From c1691d732fa5799b0c7a55bcccf41493b840e9c7 Mon Sep 17 00:00:00 2001 From: Andrew Gvozdev Date: Mon, 24 Aug 2009 01:00:42 +0000 Subject: [PATCH] malformed JavaDoc tags --- .../src/org/eclipse/cdt/core/errorparsers/ErrorPattern.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/errorparsers/ErrorPattern.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/errorparsers/ErrorPattern.java index 5c77557298f..e3cadd916d4 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/errorparsers/ErrorPattern.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/errorparsers/ErrorPattern.java @@ -103,7 +103,7 @@ public class ErrorPattern { /** * @param matcher - matcher to parse the input line. - * @return parsed file name or {code null}. + * @return parsed file name or {@code null}. */ public String getFileName(Matcher matcher) { return groupFileName != 0 ? matcher.group(groupFileName) : null; @@ -125,7 +125,7 @@ public class ErrorPattern { /** * @param matcher - matcher to parse the input line. - * @return parsed description or {code null}. + * @return parsed description or {@code null}. */ public String getDesc(Matcher matcher) { return groupDesc != 0 ? matcher.group(groupDesc) : null; @@ -133,7 +133,7 @@ public class ErrorPattern { /** * @param matcher - matcher to parse the input line. - * @return parsed variable name or {code null}. + * @return parsed variable name or {@code null}. */ public String getVarName(Matcher matcher) { return groupVarName != 0 ? matcher.group(groupVarName) : null;