Skip to content

Commit

Permalink
[MSHADE-423] - Get rid of commons-lang3
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Aug 1, 2022
1 parent 617950c commit 5ae83a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,6 @@
<artifactId>jdependency</artifactId>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@

import org.apache.commons.collections4.MultiValuedMap;
import org.apache.commons.collections4.multimap.HashSetValuedHashMap;
import org.apache.commons.lang3.StringUtils;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.shade.filter.Filter;
import org.apache.maven.plugins.shade.relocation.Relocator;
Expand Down Expand Up @@ -442,8 +441,8 @@ private void logSummaryOfDuplicates( MultiValuedMap<Collection<File>, String> ov
all.addAll( resources );

logger.warn(
StringUtils.join( jarzS, ", " ) + " define " + all.size()
+ " overlapping " + StringUtils.join( overlaps, " and " ) + ": " );
String.join( ", ", jarzS ) + " define " + all.size()
+ " overlapping " + String.join( " and ", overlaps ) + ": " );
//CHECKSTYLE_ON: LineLength

Collections.sort( all );
Expand Down

0 comments on commit 5ae83a0

Please sign in to comment.