Skip to content

Commit

Permalink
chore: Renamed property variable
Browse files Browse the repository at this point in the history
Refs: #DEV-11660
  • Loading branch information
nirikash committed Jun 14, 2024
1 parent 5125e38 commit 7bffe49
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public HtmlLinksHelper(Set<LinkInternalizer> linkInliners) {
}

public String internalizeLinks(String htmlContent) {
boolean enablingProperty = PdfExporterExtensionConfiguration.getInstance().getInternalizeExternalCss();
if (!enablingProperty) {
boolean linksInternalizationEnabled = PdfExporterExtensionConfiguration.getInstance().getInternalizeExternalCss();
if (!linksInternalizationEnabled) {
return htmlContent;
}

Expand Down

0 comments on commit 7bffe49

Please sign in to comment.