1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Parser: Do not reset attributes when tag has more than 16 attributes [#579]

This commit is contained in:
gnosygnu
2019-09-27 20:39:09 -04:00
parent 742e61b718
commit fdd05c99a9
3 changed files with 16 additions and 2 deletions

View File

@@ -25,6 +25,15 @@ public class Int_ary_ {//RF:DATE:2017-10-09
trg[i] = src[i];
}
public static int[] Mid(int[] src, int bgn, int end) {
int len = end - bgn + 1;
int[] rv = new int[len];
for (int i = 0; i < len; i++) {
rv[i] = src[i + bgn];
}
return rv;
}
public static String To_str(String spr, int... ary) {
Bry_bfr bfr = Bry_bfr_.New();
int len = ary.length;