1.1 --- a/java/alt2xml-out-xpath/src/cz/frantovo/alt2xml/out/xpath/XPathAction.java Thu Sep 04 17:56:58 2014 +0200
1.2 +++ b/java/alt2xml-out-xpath/src/cz/frantovo/alt2xml/out/xpath/XPathAction.java Thu Sep 04 18:16:33 2014 +0200
1.3 @@ -60,7 +60,7 @@
1.4 for (int i = 1; i < actionData.size(); i++) {
1.5 String parameterName = actionData.get(i++);
1.6 String parameterType = typedParameters ? actionData.get(i++) : "string";
1.7 - Object parameterValue = parseParameterValue(parameterType, actionData.get(i++));
1.8 + Object parameterValue = parseParameterValue(parameterType, actionData.get(i));
1.9 xpathParameters.put(parameterName, parameterValue);
1.10 }
1.11