Skip to content

Commit abdd7e3

Browse files
srinivasankavithavepanimas
authored andcommitted
Make the security config parameter nullable.
1 parent 186308c commit abdd7e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/com/intellij/lang/jsgraphql/ide/introspection/GraphQLIntrospectionService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public GraphQLConfigSecurity getSecurityConfig(@NotNull VirtualFile file) {
226226
}
227227

228228
@NotNull
229-
public CloseableHttpClient createHttpClient(GraphQLConfigSecurity sslConfig) throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, IOException, UnrecoverableKeyException, CertificateException {
229+
public CloseableHttpClient createHttpClient(@Nullable GraphQLConfigSecurity sslConfig) throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, IOException, UnrecoverableKeyException, CertificateException {
230230
HttpClientBuilder builder = HttpClients.custom();
231231
builder.setRedirectStrategy(LaxRedirectStrategy.INSTANCE);
232232

0 commit comments

Comments
 (0)