Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Morgner2019-02-18 15:26:06 +0000
committerFelix Morgner2019-02-19 08:10:36 +0000
commitf60bbf25dda0d99fe7c7cd781afae6f3455a0908 (patch)
tree024fe5cee42a3350e72e715dbf9ee636dcfaf683
parent8fe6bbb70ef87756832f407e6889412941bbd4fc (diff)
downloadorg.eclipse.cdt-f60bbf25dda0d99fe7c7cd781afae6f3455a0908.tar.gz
org.eclipse.cdt-f60bbf25dda0d99fe7c7cd781afae6f3455a0908.tar.xz
org.eclipse.cdt-f60bbf25dda0d99fe7c7cd781afae6f3455a0908.zip
Bug 544539: Codan requires universal resolution from plugins
Change-Id: Ia7da2450d90e644d270928dacb86a2c470982c10 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=544539 Signed-off-by: Felix Morgner <fmorgner@hsr.ch>
-rw-r--r--codan/org.eclipse.cdt.codan.ui/META-INF/MANIFEST.MF2
-rw-r--r--codan/org.eclipse.cdt.codan.ui/schema/codanMarkerResolution.exsd6
2 files changed, 4 insertions, 4 deletions
diff --git a/codan/org.eclipse.cdt.codan.ui/META-INF/MANIFEST.MF b/codan/org.eclipse.cdt.codan.ui/META-INF/MANIFEST.MF
index 425528e5c91..f3ab59974b2 100644
--- a/codan/org.eclipse.cdt.codan.ui/META-INF/MANIFEST.MF
+++ b/codan/org.eclipse.cdt.codan.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.eclipse.cdt.codan.ui; singleton:=true
-Bundle-Version: 3.3.1.qualifier
+Bundle-Version: 3.3.100.qualifier
Bundle-Activator: org.eclipse.cdt.codan.internal.ui.CodanUIActivator
Bundle-Vendor: %Bundle-Vendor
Require-Bundle: org.eclipse.cdt.codan.core,
diff --git a/codan/org.eclipse.cdt.codan.ui/schema/codanMarkerResolution.exsd b/codan/org.eclipse.cdt.codan.ui/schema/codanMarkerResolution.exsd
index 006fb9c365e..16fa9b6c52f 100644
--- a/codan/org.eclipse.cdt.codan.ui/schema/codanMarkerResolution.exsd
+++ b/codan/org.eclipse.cdt.codan.ui/schema/codanMarkerResolution.exsd
@@ -17,9 +17,9 @@
</appinfo>
</annotation>
<complexType>
- <sequence minOccurs="1" maxOccurs="unbounded">
- <element ref="resolution"/>
- <element ref="universalResolution"/>
+ <sequence>
+ <element ref="resolution" minOccurs="1" maxOccurs="unbounded"/>
+ <element ref="universalResolution" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>

Back to the top