Skip to content

Commit

Permalink
Make spotless happy
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Jun 22, 2024
1 parent 9ba89c9 commit 3e8276f
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -632,14 +632,16 @@ private void renderSectionDependencyFileDetails() {
for (JarVersionedRuntime versionedRuntime : versionedRuntimeList) {
JarClasses versionedJarClasses = versionedRuntime.getJarClasses();

debugInformationCellValue =
versionedJarClasses.isDebugPresent() ? debugInformationCellYes : debugInformationCellNo;
debugInformationCellValue = versionedJarClasses.isDebugPresent()
? debugInformationCellYes
: debugInformationCellNo;

tableRow(hasSealed, new String[] {
versionedTag,
"",
String.valueOf(versionedRuntime.getEntries().size()),
String.valueOf(versionedJarClasses.getClassNames().size()),
String.valueOf(
versionedJarClasses.getClassNames().size()),
String.valueOf(versionedJarClasses.getPackages().size()),
versionedJarClasses.getJdkRevision(),
debugInformationCellValue,
Expand Down

0 comments on commit 3e8276f

Please sign in to comment.