Fixed typo in class name TrustAllTrustMananger (#8892)
Signed-off-by: Alessandro Radicati <radicale@gmail.com>
This commit is contained in:
parent
45ee3c7a23
commit
402db720d3
|
@ -16,7 +16,7 @@ import javax.net.ssl.X509ExtendedTrustManager;
|
|||
|
||||
import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
import org.openhab.core.io.net.http.TlsTrustManagerProvider;
|
||||
import org.openhab.core.io.net.http.TrustAllTrustMananger;
|
||||
import org.openhab.core.io.net.http.TrustAllTrustManager;
|
||||
import org.osgi.service.component.annotations.Component;
|
||||
|
||||
/**
|
||||
|
@ -35,6 +35,6 @@ public class AVMFritzTlsTrustManagerProvider implements TlsTrustManagerProvider
|
|||
|
||||
@Override
|
||||
public X509ExtendedTrustManager getTrustManager() {
|
||||
return TrustAllTrustMananger.getInstance();
|
||||
return TrustAllTrustManager.getInstance();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ import javax.net.ssl.X509ExtendedTrustManager;
|
|||
|
||||
import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
import org.openhab.core.io.net.http.TlsTrustManagerProvider;
|
||||
import org.openhab.core.io.net.http.TrustAllTrustMananger;
|
||||
import org.openhab.core.io.net.http.TrustAllTrustManager;
|
||||
import org.osgi.service.component.annotations.Component;
|
||||
|
||||
/**
|
||||
|
@ -35,6 +35,6 @@ public class SamsungTvTlsTrustManagerProvider implements TlsTrustManagerProvider
|
|||
|
||||
@Override
|
||||
public X509ExtendedTrustManager getTrustManager() {
|
||||
return TrustAllTrustMananger.getInstance();
|
||||
return TrustAllTrustManager.getInstance();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue