1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 06:32:10 +02:00

malformed JavaDoc tags

This commit is contained in:
Andrew Gvozdev 2009-08-24 01:00:42 +00:00
parent 02b962a4a7
commit c1691d732f

View file

@ -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;