Skip to content

Commit 7192e9f

Browse files
committed
use the correct classExtendSeparatorIndex
1 parent cbb191d commit 7192e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/src/com/tns/ClassResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static Class<?> resolveClass(String fullClassName, DexFactory dexFactory,
1818
String name = null;
1919
String className = cannonicalClassName;
2020

21-
int classExtendSeparatorIndex = cannonicalClassName.indexOf('_');
21+
int classExtendSeparatorIndex = cannonicalClassName.indexOf("_f");
2222
if (classExtendSeparatorIndex != -1)
2323
{
2424
className = cannonicalClassName.substring(0, classExtendSeparatorIndex);

0 commit comments

Comments
 (0)