mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
16 lines
384 B
Java
16 lines
384 B
Java
|
package org.webrtc;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
class WebRtcClassLoader {
|
||
|
WebRtcClassLoader() {
|
||
|
}
|
||
|
|
||
|
static Object getClassLoader() {
|
||
|
ClassLoader classLoader = WebRtcClassLoader.class.getClassLoader();
|
||
|
if (classLoader != null) {
|
||
|
return classLoader;
|
||
|
}
|
||
|
throw new RuntimeException("Failed to get WebRTC class loader.");
|
||
|
}
|
||
|
}
|