mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 04:27:38 +02:00
The fastIndexOf inline method should be a direct method, not virtual
git-svn-id: https://smali.googlecode.com/svn/trunk@800 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
@ -108,7 +108,7 @@ abstract class InlineMethodResolver {
|
|||||||
indexOfIIMethod = deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "indexOf", "II", "I");
|
indexOfIIMethod = deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "indexOf", "II", "I");
|
||||||
|
|
||||||
//gingerbread
|
//gingerbread
|
||||||
fastIndexOfMethod = deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "fastIndexOf", "II", "I");
|
fastIndexOfMethod = deodexUtil.new InlineMethod(Direct, "Ljava/lang/String;", "fastIndexOf", "II", "I");
|
||||||
isEmptyMethod = deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "isEmpty", "", "Z");
|
isEmptyMethod = deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "isEmpty", "", "Z");
|
||||||
|
|
||||||
inlineMethods = new DeodexUtil.InlineMethod[] {
|
inlineMethods = new DeodexUtil.InlineMethod[] {
|
||||||
|
Reference in New Issue
Block a user