mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
20 lines
461 B
Java
20 lines
461 B
Java
![]() |
package io.sentry.transport;
|
||
|
|
||
|
import java.net.Authenticator;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
final class AuthenticatorWrapper {
|
||
|
private static final AuthenticatorWrapper instance = new AuthenticatorWrapper();
|
||
|
|
||
|
public static AuthenticatorWrapper getInstance() {
|
||
|
return instance;
|
||
|
}
|
||
|
|
||
|
private AuthenticatorWrapper() {
|
||
|
}
|
||
|
|
||
|
public void setDefault(Authenticator authenticator) {
|
||
|
Authenticator.setDefault(authenticator);
|
||
|
}
|
||
|
}
|