Merge branch 'master' of https://github.com/Konloch/bytecode-viewer
This commit is contained in:
commit
1302a9c271
1 changed files with 3 additions and 3 deletions
|
@ -230,9 +230,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) {
|
||||
|
|
Loading…
Reference in a new issue