Merge pull request #306 from ThexXTURBOXx/master

Fix recent files
This commit is contained in:
Kalen (Konloch) Kinloch 2021-06-29 10:20:34 -07:00 committed by GitHub
commit 9046fc2488
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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