Change package for generated tags
- move all generated tag classes from j2html.tags.specialized.generated to j2html.tags.specialized since they are now only generated tags and in the long run there should be no difference for a user of j2html whether the classes have been generated or not
This commit is contained in:
@@ -18,7 +18,7 @@ import static j2html_codegen.generators.TagCreatorCodeGenerator.emptyTags;
|
||||
|
||||
public final class SpecializedTagClassCodeGenerator {
|
||||
|
||||
private static final String relPath = "tags/specialized/generated";
|
||||
private static final String relPath = "tags/specialized";
|
||||
|
||||
public static void generate(final Path absPath, final boolean delete) throws IOException {
|
||||
|
||||
@@ -102,7 +102,7 @@ public final class SpecializedTagClassCodeGenerator {
|
||||
}
|
||||
|
||||
private static String getPackage(){
|
||||
return "package j2html.tags.specialized.generated;\n";
|
||||
return "package j2html.tags.specialized;\n";
|
||||
}
|
||||
|
||||
private static String getClassTemplate(
|
||||
|
||||
Reference in New Issue
Block a user