Skip to content

Commit

Permalink
Fixed typo in class name TrustAllTrustMananger (openhab#8892)
Browse files Browse the repository at this point in the history
  • Loading branch information
radicale authored Oct 28, 2020
1 parent 334b110 commit b7c23b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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;

/**
Expand All @@ -35,6 +35,6 @@ public String getHostName() {

@Override
public X509ExtendedTrustManager getTrustManager() {
return TrustAllTrustMananger.getInstance();
return TrustAllTrustManager.getInstance();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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;

/**
Expand All @@ -35,6 +35,6 @@ public String getHostName() {

@Override
public X509ExtendedTrustManager getTrustManager() {
return TrustAllTrustMananger.getInstance();
return TrustAllTrustManager.getInstance();
}
}

0 comments on commit b7c23b9

Please sign in to comment.