Merge pull request #99 from linpeilie/1.4.4

1.4.4
This commit is contained in:
easii 2024-08-21 14:34:54 +08:00 committed by GitHub
commit f202bd3b67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -56,10 +56,10 @@ public class AutoMapperProperties {
static {
// load increment mark
Integer mark = IncrementMarkUtils.incrementAndGet();
adapterClassName = adapterClassName + "$" + mark;
mapAdapterClassName = mapAdapterClassName + "$" + mark;
autoMapperConfigClassName = autoMapperConfigClassName + "$" + mark;
autoMapMapperConfigClassName = autoMapMapperConfigClassName + "$" + mark;
adapterClassName = adapterClassName + "__" + mark;
mapAdapterClassName = mapAdapterClassName + "__" + mark;
autoMapperConfigClassName = autoMapperConfigClassName + "__" + mark;
autoMapMapperConfigClassName = autoMapMapperConfigClassName + "__" + mark;
}
public static String getConfigClassName() {

View File

@ -18,7 +18,7 @@
</modules>
<properties>
<mapstruct-plus.version>1.4.3</mapstruct-plus.version>
<mapstruct-plus.version>1.4.4</mapstruct-plus.version>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>