diff --git a/jasperreports/src/net/sf/jasperreports/export/PdfExporterConfiguration.java b/jasperreports/src/net/sf/jasperreports/export/PdfExporterConfiguration.java index c81d8547ea..8ce91d8d91 100644 --- a/jasperreports/src/net/sf/jasperreports/export/PdfExporterConfiguration.java +++ b/jasperreports/src/net/sf/jasperreports/export/PdfExporterConfiguration.java @@ -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"; @@ -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"; diff --git a/jasperreports/src/net/sf/jasperreports/properties/PropertyConstants.java b/jasperreports/src/net/sf/jasperreports/properties/PropertyConstants.java index 5e5e811c16..281cbfd45a 100644 --- a/jasperreports/src/net/sf/jasperreports/properties/PropertyConstants.java +++ b/jasperreports/src/net/sf/jasperreports/properties/PropertyConstants.java @@ -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"; }