Skip to content

Commit

Permalink
remove splitProperties
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenKruse committed Oct 28, 2022
1 parent cf83b76 commit e897951
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -913,17 +913,6 @@ public Dependency interpolateVersion( final Dependency dependency, final MavenPr
return dependency;
}

private List<String> getSplitProperties( String commaSeparatedProperties )
{
List<String> propertiesList = Collections.emptyList();
if ( StringUtils.isNotEmpty( commaSeparatedProperties ) )
{
String[] splittedProps = StringUtils.split( commaSeparatedProperties, "," );
propertiesList = Arrays.asList( StringUtils.stripAll( splittedProps ) );
}
return propertiesList;
}

/**
* Builder class for {@linkplain DefaultVersionsHelper}
*/
Expand Down

0 comments on commit e897951

Please sign in to comment.