Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2019-07-24 06:24:22 +0000
committerLakshmi Shanmugam2019-07-24 06:58:34 +0000
commit84817fbd40be2e84c2254b1eb8552d3e5fa8b567 (patch)
treebdf9c680688aed4cd808ee525b221b296ab93c1d /bundles
parent0fbce60b619198abd01d3be9ad0761b1e7f2bcd9 (diff)
downloadeclipse.platform.swt-84817fbd40be2e84c2254b1eb8552d3e5fa8b567.tar.gz
eclipse.platform.swt-84817fbd40be2e84c2254b1eb8552d3e5fa8b567.tar.xz
eclipse.platform.swt-84817fbd40be2e84c2254b1eb8552d3e5fa8b567.zip
Bug 549481 - [Mac]API Tools error in Display.java
Putback the filter for MANIFEST.MF removed by previous commit as it causes API tools warning in official build (Windows). The API tools filters is common for all platforms. Some filters may be platform specific. So, don't enable automatically remove unused filters. Also, set unused problem filters to warning. Change-Id: I15bfe4952a6fb47d7913d0074878aef00a924301
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.swt/.settings/.api_filters8
-rw-r--r--bundles/org.eclipse.swt/.settings/org.eclipse.pde.api.tools.prefs4
2 files changed, 10 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/.settings/.api_filters b/bundles/org.eclipse.swt/.settings/.api_filters
index 3da34e65c1..a280165f1d 100644
--- a/bundles/org.eclipse.swt/.settings/.api_filters
+++ b/bundles/org.eclipse.swt/.settings/.api_filters
@@ -486,4 +486,12 @@
</message_arguments>
</filter>
</resource>
+ <resource path="META-INF/MANIFEST.MF">
+ <filter comment="Bug 548190 - Adding API Tools filter to hide the warning message in org.eclipse.swt project. For more details refer: https://bugs.eclipse.org/bugs/show_bug.cgi?id=548190#c23" id="926941240">
+ <message_arguments>
+ <message_argument value="3.112.0"/>
+ <message_argument value="3.111.0"/>
+ </message_arguments>
+ </filter>
+ </resource>
</component>
diff --git a/bundles/org.eclipse.swt/.settings/org.eclipse.pde.api.tools.prefs b/bundles/org.eclipse.swt/.settings/org.eclipse.pde.api.tools.prefs
index e11abc214e..47fac8aaff 100644
--- a/bundles/org.eclipse.swt/.settings/org.eclipse.pde.api.tools.prefs
+++ b/bundles/org.eclipse.swt/.settings/org.eclipse.pde.api.tools.prefs
@@ -88,8 +88,8 @@ TYPE_PARAMETER_ELEMENT_TYPE_CHANGED_CLASS_BOUND=Error
TYPE_PARAMETER_ELEMENT_TYPE_CHANGED_INTERFACE_BOUND=Error
TYPE_PARAMETER_ELEMENT_TYPE_REMOVED_CLASS_BOUND=Error
TYPE_PARAMETER_ELEMENT_TYPE_REMOVED_INTERFACE_BOUND=Error
-UNUSED_PROBLEM_FILTERS=Error
-automatically_removed_unused_problem_filters=Enabled
+UNUSED_PROBLEM_FILTERS=Warning
+automatically_removed_unused_problem_filters=Disabled
changed_execution_env=Error
eclipse.preferences.version=1
incompatible_api_component_version=Error

Back to the top