avoid NegativeArraySizeException if input string is "\\#FFF#"

This commit is contained in:
kkolyan 2020-06-08 04:29:57 +03:00 committed by Stephen Gold
parent 32e8b68ea0
commit dd0c169d62

View File

@ -77,7 +77,7 @@ class ColorTags {
}
Matcher m = colorPattern.matcher(charSeq);
if (m.find()) {
StringBuilder builder = new StringBuilder(charSeq.length()-7);
StringBuilder builder = new StringBuilder();
int startIndex = 0;
do {
String colorStr = null;