8014557: Mutable static field in HtmlDocletWriter
Reviewed-by: ksrini
This commit is contained in:
parent
8530833747
commit
ac02470255
@ -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');
|
||||
|
Loading…
x
Reference in New Issue
Block a user