You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2011/11/11 17:27:43 UTC

svn commit: r1200933 - /jmeter/trunk/src/functions/org/apache/jmeter/functions/XPath.java

Author: sebb
Date: Fri Nov 11 16:27:43 2011
New Revision: 1200933

URL: http://svn.apache.org/viewvc?rev=1200933&view=rev
Log:
We already import the class

Modified:
    jmeter/trunk/src/functions/org/apache/jmeter/functions/XPath.java

Modified: jmeter/trunk/src/functions/org/apache/jmeter/functions/XPath.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/functions/org/apache/jmeter/functions/XPath.java?rev=1200933&r1=1200932&r2=1200933&view=diff
==============================================================================
--- jmeter/trunk/src/functions/org/apache/jmeter/functions/XPath.java (original)
+++ jmeter/trunk/src/functions/org/apache/jmeter/functions/XPath.java Fri Nov 11 16:27:43 2011
@@ -72,8 +72,8 @@ public class XPath extends AbstractFunct
             throws InvalidVariableException {
         String myValue = ""; //$NON-NLS-1$
 
-        String fileName = ((org.apache.jmeter.engine.util.CompoundVariable) values[0]).execute();
-        String xpathString = ((org.apache.jmeter.engine.util.CompoundVariable) values[1]).execute();
+        String fileName = ((CompoundVariable) values[0]).execute();
+        String xpathString = ((CompoundVariable) values[1]).execute();
 
         if (log.isDebugEnabled()){
             log.debug("execute (" + fileName + " " + xpathString + ")   ");