mirror of https://github.com/apache/archiva.git
fixed typo
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@951347 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
652118afbd
commit
a946c2e933
|
@ -410,7 +410,7 @@ public class GenerateReportAction
|
|||
|
||||
private List<String> parseSelectedRepositories()
|
||||
{
|
||||
List<String> pasedSelectedRepos = new ArrayList<String>();
|
||||
List<String> parsedSelectedRepos = new ArrayList<String>();
|
||||
|
||||
for ( String repo : selectedRepositories )
|
||||
{
|
||||
|
@ -419,15 +419,15 @@ public class GenerateReportAction
|
|||
{
|
||||
for ( String token : tokens )
|
||||
{
|
||||
pasedSelectedRepos.add( StringUtils.remove( StringUtils.remove( token, '[' ), ']' ).trim() );
|
||||
parsedSelectedRepos.add( StringUtils.remove( StringUtils.remove( token, '[' ), ']' ).trim() );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
pasedSelectedRepos.add( StringUtils.remove( StringUtils.remove( repo, '[' ), ']' ).trim() );
|
||||
parsedSelectedRepos.add( StringUtils.remove( StringUtils.remove( repo, '[' ), ']' ).trim() );
|
||||
}
|
||||
}
|
||||
return pasedSelectedRepos;
|
||||
return parsedSelectedRepos;
|
||||
}
|
||||
|
||||
private Date getStartDateInDateFormat()
|
||||
|
|
Loading…
Reference in New Issue