KEYCLOAK-19403 Fix issues in IntelliJ
This commit is contained in:
parent
20b91c7d4f
commit
9f79476520
3 changed files with 5 additions and 5 deletions
|
@ -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}"
|
||||||
|
|
|
@ -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");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue