fix lint for NewRepoConfig

This commit is contained in:
Michael Pöhn 2018-01-24 15:08:33 +01:00
parent b13e27f759
commit 0f64fd30c6

View File

@ -96,7 +96,7 @@ public class NewRepoConfig {
String userInfo = uri.getUserInfo(); String userInfo = uri.getUserInfo();
if (userInfo != null) { if (userInfo != null) {
String[] userInfoTokens = userInfo.split(":"); String[] userInfoTokens = userInfo.split(":");
if (userInfoTokens != null && userInfoTokens.length >= 2){ if (userInfoTokens != null && userInfoTokens.length >= 2) {
username = userInfoTokens[0]; username = userInfoTokens[0];
password = userInfoTokens[1]; password = userInfoTokens[1];
for (int i = 2; i < userInfoTokens.length; i++) { for (int i = 2; i < userInfoTokens.length; i++) {