fix lint for NewRepoConfig
This commit is contained in:
parent
b13e27f759
commit
0f64fd30c6
@ -96,7 +96,7 @@ public class NewRepoConfig {
|
||||
String userInfo = uri.getUserInfo();
|
||||
if (userInfo != null) {
|
||||
String[] userInfoTokens = userInfo.split(":");
|
||||
if (userInfoTokens != null && userInfoTokens.length >= 2){
|
||||
if (userInfoTokens != null && userInfoTokens.length >= 2) {
|
||||
username = userInfoTokens[0];
|
||||
password = userInfoTokens[1];
|
||||
for (int i = 2; i < userInfoTokens.length; i++) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user