# HG changeset patch
# User František Kučera <franta-hg@frantovo.cz>
# Date 1409847393 -7200
# Node ID 75556166817a1a52151548b2d51fa06e9ef28cc3
# Parent  ead6a0d4e02245e2ec852ebf90d6a8a46f3affbc
out-xpath: fix – support more parameters

diff -r ead6a0d4e022 -r 75556166817a java/alt2xml-out-xpath/src/cz/frantovo/alt2xml/out/xpath/XPathAction.java
--- a/java/alt2xml-out-xpath/src/cz/frantovo/alt2xml/out/xpath/XPathAction.java	Thu Sep 04 17:56:58 2014 +0200
+++ b/java/alt2xml-out-xpath/src/cz/frantovo/alt2xml/out/xpath/XPathAction.java	Thu Sep 04 18:16:33 2014 +0200
@@ -60,7 +60,7 @@
 			for (int i = 1; i < actionData.size(); i++) {
 				String parameterName = actionData.get(i++);
 				String parameterType = typedParameters ? actionData.get(i++) : "string";
-				Object parameterValue = parseParameterValue(parameterType, actionData.get(i++));
+				Object parameterValue = parseParameterValue(parameterType, actionData.get(i));
 				xpathParameters.put(parameterName, parameterValue);
 			}