Adding u HTML tag to list of allowed tags in JavaDoc. Fixes issue #58.

This commit is contained in:
Ilja Gubins 2014-03-16 18:28:49 +02:00 committed by Roman Ivanov
parent e82a3d217c
commit dfde8d0ffd
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class JavadocStyleCheck
"h2", "h3", "h4", "h5", "h6", "hr", "i", "img", "ins", "kbd",
"li", "ol", "p", "pre", "q", "samp", "small", "span", "strong",
"style", "sub", "sup", "table", "tbody", "td", "tfoot", "th",
"thead", "tr", "tt", "ul");
"thead", "tr", "tt", "u", "ul");
/** The scope to check. */
private Scope mScope = Scope.PRIVATE;