mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8014557: Mutable static field in HtmlDocletWriter
Reviewed-by: ksrini
This commit is contained in:
parent
8530833747
commit
ac02470255
1 changed files with 1 additions and 1 deletions
|
@ -1771,7 +1771,7 @@ public class HtmlDocletWriter extends HtmlDocWriter {
|
||||||
return result.toString();
|
return result.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean isHtmlTagLetterOrDigit(char ch) {
|
private static final boolean isHtmlTagLetterOrDigit(char ch) {
|
||||||
return ('a' <= ch && ch <= 'z') ||
|
return ('a' <= ch && ch <= 'z') ||
|
||||||
('A' <= ch && ch <= 'Z') ||
|
('A' <= ch && ch <= 'Z') ||
|
||||||
('1' <= ch && ch <= '6');
|
('1' <= ch && ch <= '6');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue