Skip to content

Commit f0fd6fd

Browse files
committed
Remove 'deprecation' from @SuppressWarnings as it triggers a compiler
warning
1 parent bb94f85 commit f0fd6fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bundles/org.eclipse.e4.ui.model.workbench/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.e4.ui.model.workbench;singleton:=true
5-
Bundle-Version: 2.4.600.qualifier
5+
Bundle-Version: 2.4.700.qualifier
66
Bundle-Vendor: %providerName
77
Bundle-Localization: plugin
88
Bundle-RequiredExecutionEnvironment: JavaSE-17

bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/ModelXPathEvaluator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
public class ModelXPathEvaluator {
2121

22-
@SuppressWarnings({ "deprecation", "removal" })
22+
@SuppressWarnings({ "removal" })
2323
public static <T> Stream<T> findMatchingElements(MApplicationElement searchRoot, String xPath, Class<T> clazz) {
2424
return XPathContextFactory.newInstance().newContext(searchRoot).stream(xPath, clazz);
2525
}

0 commit comments

Comments
 (0)