Fix typo in method name
Change-Id: I99debfc64f12689ABFC129058ea09e003854296b Signed-off-by: Adrian Görler <adrian.goerler@sap.com>
This commit is contained in:
@@ -136,7 +136,7 @@ class GerritConfigProvider implements Provider<GerritConfig> {
|
||||
config.setReportBugUrl(null);
|
||||
}
|
||||
|
||||
config.setGitBasicAuth(authConfig.isGitBasichAuth());
|
||||
config.setGitBasicAuth(authConfig.isGitBasicAuth());
|
||||
|
||||
final Set<Account.FieldName> fields = new HashSet<Account.FieldName>();
|
||||
for (final Account.FieldName n : Account.FieldName.values()) {
|
||||
|
||||
@@ -34,7 +34,7 @@ public class GitOverHttpModule extends ServletModule {
|
||||
Class<? extends Filter> authFilter;
|
||||
if (authConfig.isTrustContainerAuth()) {
|
||||
authFilter = ContainerAuthFilter.class;
|
||||
} else if (authConfig.isGitBasichAuth()) {
|
||||
} else if (authConfig.isGitBasicAuth()) {
|
||||
authFilter = ProjectBasicAuthFilter.class;
|
||||
} else {
|
||||
authFilter = ProjectDigestFilter.class;
|
||||
|
||||
@@ -197,7 +197,7 @@ public class AuthConfig {
|
||||
}
|
||||
|
||||
/** Whether git-over-http should use Gerrit basic authentication scheme. */
|
||||
public boolean isGitBasichAuth() {
|
||||
public boolean isGitBasicAuth() {
|
||||
return gitBasicAuth;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user