Merge pull request #1786 from jkiddo/patch-4

Update PECodeGenerator.java
This commit is contained in:
Grahame Grieve 2024-10-23 07:10:58 +10:30 committed by GitHub
commit 12ee505fbd
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) {