Skip to content

Commit

Permalink
fix since version in properties
Browse files Browse the repository at this point in the history
  • Loading branch information
teodord committed May 10, 2023
1 parent 10bda2c commit db482aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ public interface PdfExporterConfiguration extends ExporterConfiguration
category = PropertyConstants.CATEGORY_EXPORT,
defaultValue = PropertyConstants.BOOLEAN_FALSE,
scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT},
sinceVersion = PropertyConstants.VERSION_6_20_3,
sinceVersion = PropertyConstants.VERSION_6_20_5,
valueType = Boolean.class
)
public static final String PROPERTY_EMBED_ICC_PROFILE = JRPropertiesUtil.PROPERTY_PREFIX + "export.pdfa.embed.icc.profile";
Expand All @@ -282,7 +282,7 @@ public interface PdfExporterConfiguration extends ExporterConfiguration
category = PropertyConstants.CATEGORY_EXPORT,
defaultValue = PropertyConstants.BOOLEAN_FALSE,
scopes = {PropertyScope.CONTEXT, PropertyScope.REPORT},
sinceVersion = PropertyConstants.VERSION_6_20_3,
sinceVersion = PropertyConstants.VERSION_6_20_5,
valueType = Boolean.class
)
public static final String PROPERTY_USE_CMYK_COLORS = JRPropertiesUtil.PROPERTY_PREFIX + "export.pdf.use.cmyk.colors";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,6 @@ public interface PropertyConstants

String VERSION_6_20_2 = JRConstants.VERSION_6_20_2;

String VERSION_6_20_3 = "6.20.3";

String VERSION_6_20_5 = "6.20.5";

}

0 comments on commit db482aa

Please sign in to comment.