8014557: Mutable static field in HtmlDocletWriter

Reviewed-by: ksrini
This commit is contained in:
Jonathan Gibbons 2013-05-14 13:55:35 -07:00
parent 8530833747
commit ac02470255

View File

@ -1771,7 +1771,7 @@ public class HtmlDocletWriter extends HtmlDocWriter {
return result.toString();
}
private static boolean isHtmlTagLetterOrDigit(char ch) {
private static final boolean isHtmlTagLetterOrDigit(char ch) {
return ('a' <= ch && ch <= 'z') ||
('A' <= ch && ch <= 'Z') ||
('1' <= ch && ch <= '6');