You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2006/09/08 00:45:41 UTC

svn commit: r441281 - /incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPath.java

Author: jmsnell
Date: Thu Sep  7 15:45:40 2006
New Revision: 441281

URL: http://svn.apache.org/viewvc?view=rev&rev=441281
Log:
Rollback a change that breaks some compilers

Modified:
    incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPath.java

Modified: incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPath.java
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPath.java?view=diff&rev=441281&r1=441280&r2=441281
==============================================================================
--- incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPath.java (original)
+++ incubator/abdera/java/trunk/core/src/main/java/org/apache/abdera/xpath/XPath.java Thu Sep  7 15:45:40 2006
@@ -59,12 +59,12 @@
     Base base, 
     Map<String,String> namespaces) throws XPathException;
   
-  <T>T selectSingleNode(
+  Object selectSingleNode(
     String path, 
     Base base, 
     Map<String,String> namespaces) throws XPathException;
   
-  <T>T evaluate(
+  Object evaluate(
     String path, 
     Base base, 
     Map<String,String> namespaces) throws XPathException;