提交 b90a6b22 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Remove unused imports, stray semicolon, use static access to a static method

上级 785dd724
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
package org.h2.api; package org.h2.api;
import java.util.Collection; import java.util.Collection;
import java.util.Set;
import org.h2.security.auth.AuthenticationException; import org.h2.security.auth.AuthenticationException;
import org.h2.security.auth.AuthenticationInfo; import org.h2.security.auth.AuthenticationInfo;
......
...@@ -2989,7 +2989,7 @@ public class Database implements DataHandler { ...@@ -2989,7 +2989,7 @@ public class Database implements DataHandler {
public void setAuthenticator(Authenticator authenticator) { public void setAuthenticator(Authenticator authenticator) {
if (authenticator!=null) { if (authenticator!=null) {
authenticator.init(this); authenticator.init(this);
}; }
this.authenticator=authenticator; this.authenticator=authenticator;
} }
} }
...@@ -40,11 +40,10 @@ import org.h2.command.CommandInterface; ...@@ -40,11 +40,10 @@ import org.h2.command.CommandInterface;
import org.h2.engine.ConnectionInfo; import org.h2.engine.ConnectionInfo;
import org.h2.engine.Constants; import org.h2.engine.Constants;
import org.h2.engine.Mode; import org.h2.engine.Mode;
import org.h2.engine.Mode.ModeEnum;
import org.h2.engine.SessionInterface; import org.h2.engine.SessionInterface;
import org.h2.engine.SessionRemote; import org.h2.engine.SessionRemote;
import org.h2.engine.SysProperties; import org.h2.engine.SysProperties;
import org.h2.engine.Mode.ModeEnum;
import org.h2.engine.Session;
import org.h2.message.DbException; import org.h2.message.DbException;
import org.h2.message.TraceObject; import org.h2.message.TraceObject;
import org.h2.result.ResultInterface; import org.h2.result.ResultInterface;
......
...@@ -57,7 +57,7 @@ public class StaticUserCredentialsValidator implements CredentialsValidator { ...@@ -57,7 +57,7 @@ public class StaticUserCredentialsValidator implements CredentialsValidator {
public void configure(ConfigProperties configProperties) { public void configure(ConfigProperties configProperties) {
String userNamePatternString=configProperties.getStringValue("userNamePattern",null); String userNamePatternString=configProperties.getStringValue("userNamePattern",null);
if (userNamePatternString!=null) { if (userNamePatternString!=null) {
userNamePattern=userNamePattern.compile(userNamePatternString); userNamePattern = Pattern.compile(userNamePatternString);
} }
password=configProperties.getStringValue("password",password); password=configProperties.getStringValue("password",password);
String saltString =configProperties.getStringValue("salt",null); String saltString =configProperties.getStringValue("salt",null);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论