KEYCLOAK-19403 Fix issues in IntelliJ

This commit is contained in:
stianst 2021-09-27 14:20:08 +02:00 committed by Stian Thorgersen
parent 20b91c7d4f
commit 9f79476520
3 changed files with 5 additions and 5 deletions

View file

@ -31,8 +31,8 @@
<packaging>bundle</packaging> <packaging>bundle</packaging>
<properties> <properties>
<maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<keycloak.osgi.export> <keycloak.osgi.export>
org.keycloak.adapters.camel.undertow;version="${project.version}" org.keycloak.adapters.camel.undertow;version="${project.version}"

View file

@ -69,7 +69,7 @@ public class AuthzClient {
* @return a new instance * @return a new instance
*/ */
public static AuthzClient create(InputStream configStream) throws RuntimeException { public static AuthzClient create(InputStream configStream) throws RuntimeException {
if (Objects.isNull(configStream)) { if (configStream == null) {
throw new IllegalArgumentException("Config input stream can not be null"); throw new IllegalArgumentException("Config input stream can not be null");
} }

View file

@ -31,8 +31,8 @@
<description/> <description/>
<properties> <properties>
<maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<timestamp>${maven.build.timestamp}</timestamp> <timestamp>${maven.build.timestamp}</timestamp>
<skip.security-manager.tests>true</skip.security-manager.tests> <skip.security-manager.tests>true</skip.security-manager.tests>