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 3efeaeb commit 73a4387Copy full SHA for 73a4387
src/main/java/io/appium/java_client/proxy/Helpers.java
@@ -136,7 +136,7 @@ public static <T> T createProxy(
136
.defineField("methodCallListeners", MethodCallListener[].class, Visibility.PRIVATE)
137
.implement(HasMethodCallListeners.class).intercept(FieldAccessor.ofBeanProperty())
138
.make()
139
- .load(ClassLoader.getSystemClassLoader(), ClassLoadingStrategy.Default.WRAPPER)
+ .load(Helpers.class.getClassLoader(), ClassLoadingStrategy.Default.WRAPPER)
140
.getLoaded()
141
.asSubclass(cls);
142
});
0 commit comments