Skip to content

Commit

Permalink
Local field of name sealed - cause spotless to error
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Apr 8, 2023
1 parent d7fe4e3 commit 0cfd77c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -487,7 +487,7 @@ private void renderSectionDependencyFileDetails() {
String debugInformationTitle = getI18nString("file.details.columntitle.debuginformation");
String debugInformationCellYes = getI18nString("file.details.cell.debuginformation.yes");
String debugInformationCellNo = getI18nString("file.details.cell.debuginformation.no");
String sealed = getI18nString("file.details.column.sealed");
String aSealed = getI18nString("file.details.column.sealed");
String sealedCellYes = getI18nString("file.details.cell.sealed.yes");
String sealedCellNo = getI18nString("file.details.cell.sealed.no");

Expand Down Expand Up @@ -520,7 +520,7 @@ private void renderSectionDependencyFileDetails() {
String[] tableHeaderTitles;
if (hasSealed) {
tableHeader =
new String[] {filename, size, entries, classes, packages, javaVersion, debugInformation, sealed};
new String[] {filename, size, entries, classes, packages, javaVersion, debugInformation, aSealed};
tableHeaderTitles = new String[] {null, null, null, null, null, null, debugInformationTitle, null};
} else {
tableHeader = new String[] {filename, size, entries, classes, packages, javaVersion, debugInformation};
Expand Down

0 comments on commit 0cfd77c

Please sign in to comment.