Miscellaneous Javadoc cleanups to cut down on Eclipse warnings
Change-Id: Ifd80c546641db979911e3339fa40ab3585ca69a1
This commit is contained in:
@@ -47,9 +47,9 @@ public class LinkFindReplace implements FindReplace {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param regex regular expression pattern to match substrings with.
|
||||
* @param repl replacement link href. Capture groups within
|
||||
* <code>regex</code> can be referenced with <code>$<i>n</i></code>.
|
||||
* @param find regular expression pattern to match substrings with.
|
||||
* @param link replacement link href. Capture groups within
|
||||
* <code>find</code> can be referenced with <code>$<i>n</i></code>.
|
||||
*/
|
||||
public LinkFindReplace(String find, String link) {
|
||||
this.pat = RegExp.compile(find);
|
||||
|
||||
@@ -29,9 +29,9 @@ public class RawFindReplace implements FindReplace {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param regex regular expression pattern to match substrings with.
|
||||
* @param repl replacement expression. Capture groups within
|
||||
* <code>regex</code> can be referenced with <code>$<i>n</i></code>.
|
||||
* @param find regular expression pattern to match substrings with.
|
||||
* @param replace replacement expression. Capture groups within
|
||||
* <code>find</code> can be referenced with <code>$<i>n</i></code>.
|
||||
*/
|
||||
public RawFindReplace(String find, String replace) {
|
||||
this.pat = RegExp.compile(find);
|
||||
|
||||
Reference in New Issue
Block a user