Skip to content

Commit 0092c8f

Browse files
committed
Fixup : testing and fixing CI errors
1 parent 3283ea6 commit 0092c8f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

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

2020
public class ModelXPathEvaluator {
2121

22-
@SuppressWarnings({ "removal" })
22+
//testing and fixing CI errors
23+
@SuppressWarnings({ "deprecation", "removal" })
2324
public static <T> Stream<T> findMatchingElements(MApplicationElement searchRoot, String xPath, Class<T> clazz) {
2425
return XPathContextFactory.newInstance().newContext(searchRoot).stream(xPath, clazz);
2526
}

0 commit comments

Comments
 (0)