Skip to content

Commit

Permalink
Fix check-styles issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mevan-karu committed Oct 25, 2024
1 parent ff4f91c commit e723569
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@
import org.wso2.choreo.connect.enforcer.commons.model.RequestContext;
import org.wso2.choreo.connect.enforcer.commons.model.ResourceConfig;
import org.wso2.choreo.connect.enforcer.commons.model.RetryConfig;
import org.wso2.choreo.connect.enforcer.commons.model.SecuritySchemaConfig;
import org.wso2.choreo.connect.enforcer.config.ConfigHolder;
import org.wso2.choreo.connect.enforcer.config.dto.AuthHeaderDto;
import org.wso2.choreo.connect.enforcer.constants.APIConstants;
import org.wso2.choreo.connect.enforcer.constants.Constants;
import org.wso2.choreo.connect.enforcer.util.FilterUtils;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ private void initializeAuthenticators(APIConfig apiConfig) {
}

if (isApiKeyProtected) {
APIKeyAuthenticator APIKeyAuthenticator = new APIKeyAuthenticator();
authenticators.add(APIKeyAuthenticator);
APIKeyAuthenticator apiKeyAuthenticator = new APIKeyAuthenticator();
authenticators.add(apiKeyAuthenticator);
}

Authenticator authenticator = new InternalAPIKeyAuthenticator(
Expand Down

0 comments on commit e723569

Please sign in to comment.