Update PECodeGenerator.java

This commit is contained in:
Jens Kristian Villadsen 2024-10-22 22:37:28 +02:00 committed by GitHub
parent 8bc1f493c0
commit f9ce823d7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ public class PECodeGenerator {
w(b, "public class "+name+" extends PEGeneratedBase {");
w(b);
if (url != null) {
w(b, " private static final String CANONICAL_URL = \""+url+"\";");
w(b, " public static final String CANONICAL_URL = \""+url+"\";");
w(b);
}
if (enums.length() > 0) {