[466409] reduce warnings
diff --git a/plugins/org.eclipse.actf.util.jxpath/src/org/eclipse/actf/util/jxpath/XPathServiceImpl.java b/plugins/org.eclipse.actf.util.jxpath/src/org/eclipse/actf/util/jxpath/XPathServiceImpl.java
index 9a02486..1be2d19 100644
--- a/plugins/org.eclipse.actf.util.jxpath/src/org/eclipse/actf/util/jxpath/XPathServiceImpl.java
+++ b/plugins/org.eclipse.actf.util.jxpath/src/org/eclipse/actf/util/jxpath/XPathServiceImpl.java
@@ -58,14 +58,14 @@
         }
     }
 
-    @SuppressWarnings("unchecked")
-	@Override
+    @Override
     public NodeList evalForNodeList(Object compiled, Node base) {
         CompiledExpression ce = (CompiledExpression) compiled;
         JXPathContext bctx = JXPathContext.newContext(base.getOwnerDocument());
         Pointer ptr = new DOMExNodePointer(base, null);
         JXPathContext ctx = bctx.getRelativeContext(ptr);
-        Iterator it = ce.iteratePointers(ctx);
+        @SuppressWarnings("rawtypes")
+		Iterator it = ce.iteratePointers(ctx);
         if (!it.hasNext()) return EmptyNodeListImpl.getInstance();
         List<Node> result = new ArrayList<Node>();
         do {