mirror of
https://github.com/revanced/smali.git
synced 2025-05-04 08:34:25 +02:00
Changed ArrayDeque to LinkedList, for compatibility with java 5
git-svn-id: https://smali.googlecode.com/svn/trunk@258 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
51ff76a01d
commit
1df7df69fa
@ -105,7 +105,7 @@ tokens {
|
||||
@lexer::header {
|
||||
package org.jf.smali;
|
||||
|
||||
import java.util.ArrayDeque;
|
||||
import java.util.LinkedList;
|
||||
}
|
||||
|
||||
@lexer::init {
|
||||
@ -113,7 +113,7 @@ import java.util.ArrayDeque;
|
||||
}
|
||||
|
||||
@lexer::members {
|
||||
protected ArrayDeque<Token> tokens = new ArrayDeque<Token>();
|
||||
protected LinkedList<Token> tokens = new LinkedList<Token>();
|
||||
|
||||
public void reset() {
|
||||
super.reset();
|
||||
|
Loading…
x
Reference in New Issue
Block a user