Skip to content

Commit 62ac231

Browse files
committed
GH-65 - Reduced indentation of Spring Bean types in test execution log output.
1 parent dc06565 commit 62ac231

File tree

1 file changed

+1
-1
lines changed
  • spring-modulith-core/src/main/java/org/springframework/modulith/model

1 file changed

+1
-1
lines changed

spring-modulith-core/src/main/java/org/springframework/modulith/model/Classes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ static String format(JavaClass type, String basePackage) {
216216
? type.getName().replace(basePackage, "…") //
217217
: type.getName();
218218

219-
return String.format(" %s %s", prefix, name);
219+
return String.format("%s %s", prefix, name);
220220
}
221221

222222
private static class SameClass extends DescribedPredicate<JavaClass> {

0 commit comments

Comments
 (0)