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:
parent
02b962a4a7
commit
c1691d732f
1 changed files with 3 additions and 3 deletions
|
@ -103,7 +103,7 @@ public class ErrorPattern {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param matcher - matcher to parse the input line.
|
* @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) {
|
public String getFileName(Matcher matcher) {
|
||||||
return groupFileName != 0 ? matcher.group(groupFileName) : null;
|
return groupFileName != 0 ? matcher.group(groupFileName) : null;
|
||||||
|
@ -125,7 +125,7 @@ public class ErrorPattern {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param matcher - matcher to parse the input line.
|
* @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) {
|
public String getDesc(Matcher matcher) {
|
||||||
return groupDesc != 0 ? matcher.group(groupDesc) : null;
|
return groupDesc != 0 ? matcher.group(groupDesc) : null;
|
||||||
|
@ -133,7 +133,7 @@ public class ErrorPattern {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param matcher - matcher to parse the input line.
|
* @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) {
|
public String getVarName(Matcher matcher) {
|
||||||
return groupVarName != 0 ? matcher.group(groupVarName) : null;
|
return groupVarName != 0 ? matcher.group(groupVarName) : null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue