Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

密码加密自定义key时代码bug #923

Open
lstoars opened this issue Jul 28, 2015 · 1 comment
Open

密码加密自定义key时代码bug #923

lstoars opened this issue Jul 28, 2015 · 1 comment

Comments

@lstoars
Copy link
Contributor

lstoars commented Jul 28, 2015

String key = null;
if (configFileProperties != null) {
configFileProperties.getProperty(CONFIG_KEY);
}

是不是的修改成
String key = null;
if (configFileProperties != null) {
key = configFileProperties.getProperty(CONFIG_KEY);
}

@wenshao
Copy link
Member

wenshao commented Jul 28, 2015

是的,你来提交一个pull request吧

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants