Skip to content

Commit c3e4401

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)