We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8cdb02 commit 7bf6f26Copy full SHA for 7bf6f26
spring-modulith-core/src/main/java/org/springframework/modulith/core/FormattableType.java
@@ -76,7 +76,7 @@ private FormattableType(String type) {
76
.collect(Collectors.joining("."));
77
78
return abbreviatedPackage.concat(".") //
79
- .concat(ClassUtils.getShortName(getFullName()));
+ .concat(ClassUtils.getShortName(type));
80
});
81
}
82
@@ -158,7 +158,7 @@ public String getAbbreviatedFullName(@Nullable ApplicationModule module) {
158
return abbreviate(basePackageName) //
159
.concat(typePackageName.substring(basePackageName.length())) //
160
.concat(".") //
161
162
163
164
/*
0 commit comments