You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/sbm-core/src/main/java/org/springframework/sbm/common/migration/actions/DeleteFileMatchingPattern.java
Copy file name to clipboardExpand all lines: components/sbm-core/src/main/java/org/springframework/sbm/common/migration/actions/DocumentationExtraction.java
Copy file name to clipboardExpand all lines: components/sbm-core/src/main/java/org/springframework/sbm/common/migration/conditions/NoFileMatchingPathPatternExist.java
Copy file name to clipboardExpand all lines: components/sbm-core/src/main/java/org/springframework/sbm/project/resource/SbmApplicationProperties.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ public void setIgnoredPathsPatterns(List<String> patterns) {
41
41
.collect(Collectors.toList());
42
42
43
43
if( ! absolutePatterns.isEmpty()) {
44
-
thrownewIllegalArgumentException("Found absolute ignore paths patterns defined in sbm.ignoredPathsPatterns. Patterns must be relative and not start with '/'. Invalid patterns found: ['" + absolutePatterns.stream().collect(Collectors.joining("', '")) + "'].");
44
+
thrownewIllegalArgumentException("Found absolute ignore paths patterns defined in sbm.ignoredPathsPatterns. Patterns must be relative and not start with '/'. Invalid patterns found: ['" + String.join("', '", absolutePatterns) + "'].");
0 commit comments