Compare commits

...

3 Commits

Author SHA1 Message Date
16597aebd2
[maven-release-plugin] prepare for next development iteration
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-21 10:43:09 +03:00
c50b0f6fb4
[maven-release-plugin] prepare release v.0.0.11 2023-02-21 10:43:09 +03:00
caae59207f
fix PACKAGE_AND_CLASS_NAME 2023-02-21 10:42:56 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
<groupId>dev.struchkov.haiti.utils</groupId>
<artifactId>haiti-utils-field-constants</artifactId>
<version>0.0.11-SNAPSHOT</version>
<version>0.0.12-SNAPSHOT</version>
<name>Haiti Field Name Constants Utils</name>
<description>Generating class field names</description>

View File

@ -38,7 +38,7 @@ public final class CreatorClassSimpleMode {
out.println(format("public class {0} '{'", classDto.getNewClassName()));
out.println();
out.println(format(" public static final String CLASS_NAME = \"{0}\";", classDto.getOldClassName()));
out.println(format(" public static final String PACKAGE_AND_CLASS_NAME = \"{0}\";", classDto + classDto.getClassPackage() + "." + classDto.getOldClassName()));
out.println(format(" public static final String PACKAGE_AND_CLASS_NAME = \"{0}\";", classDto.getClassPackage() + "." + classDto.getOldClassName()));
out.println();
generateSimpleNames(classDto.getSimpleFields(), out);
out.println("}");