We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7db2e2 commit 041017eCopy full SHA for 041017e
1 file changed
src/src/com/tns/DexFactory.java
@@ -194,12 +194,12 @@ private String getClassToProxyName(String className) throws InvalidClassExceptio
194
{
195
String classToProxy = className;
196
197
- if (className.startsWith("com.tns.gen"))
+ if (className.startsWith("com.tns.gen."))
198
199
classToProxy = className.substring(12);
200
}
201
202
- if (classToProxy.startsWith("com.tns.gen"))
+ if (classToProxy.startsWith("com.tns.gen."))
203
204
throw new InvalidClassException("Can't generate proxy of proxy");
205
0 commit comments