support char '$' on xml tag names for java inner class separator

This commit is contained in:
REAndroid 2023-02-28 07:02:35 -05:00
parent a79f90d875
commit 639cabed78

View File

@ -2680,7 +2680,8 @@ public class MXParser implements XmlPullParser
return (ch < LOOKUP_MAX_CHAR && lookupNameChar[ ch ])
|| (ch >= LOOKUP_MAX_CHAR && ch <= '\u2027')
|| (ch >= '\u202A' && ch <= '\u218F')
|| (ch >= '\u2800' && ch <= '\uFFEF') || ch=='@';
|| (ch >= '\u2800' && ch <= '\uFFEF')
|| ch=='@' || ch=='$';
}
protected boolean isS(char ch) {