This commit is contained in:
Konloch 2021-06-29 10:45:52 -07:00
commit 1302a9c271

View file

@ -231,8 +231,8 @@ public class MiscUtils
list.clear(); list.clear();
list.addAll(temporaryList); list.addAll(temporaryList);
while(temporaryList.size() > maxLength) while(list.size() > maxLength)
list.remove(0); list.remove(list.size() - 1);
} }
public static boolean isPureAscii(String v) { public static boolean isPureAscii(String v) {