Skip to content

Commit

Permalink
Make new methods protected as all the rest is
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Apr 26, 2024
1 parent 40be031 commit 24abd59
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -121,15 +121,15 @@ protected String getHeader() {
return header;
}

private String getGeneratedHeader() {
protected String getGeneratedHeader() {
String version = getClass().getPackage().getImplementationVersion();
return "=================== DO NOT EDIT THIS FILE ====================\n"
+ "Generated by Modello" + ((version == null) ? "" : (' ' + version)) + ",\n"
+ "any modifications will be overwritten.\n"
+ "==============================================================";
}

private String getLicenseHeader() {
protected String getLicenseHeader() {
return licenseText;
}

Expand Down

0 comments on commit 24abd59

Please sign in to comment.