mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
15 lines
384 B
Java
15 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.");
|
|
}
|
|
}
|