Author: sebb
Date: Wed Jan 7 12:02:10 2009
New Revision: 732452
URL: http://svn.apache.org/viewvc?rev=732452&view=rev
Log:
Should have removed the params field when the deprecated getParams() method was
removed in r730863
Modified:
commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java
Modified:
commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java?rev=732452&r1=732451&r2=732452&view=diff
==============================================================================
---
commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java
(original)
+++
commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/model/Invoke.java
Wed Jan 7 12:02:10 2009
@@ -19,7 +19,6 @@
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
-import java.util.HashMap;
import java.util.List;
import java.util.Map;
@@ -55,13 +54,6 @@
private String srcexpr;
/**
- * The Map of the params to be sent to the invoked process.
- *
- * Remove with deprecated getParams() in 1.0
- */
- private final Map<String, String> params;
-
- /**
* The List of the params to be sent to the invoked process.
*/
private final List<Param> paramsList;
@@ -86,7 +78,6 @@
* Default no-args constructor for Digester.
*/
public Invoke() {
- params = Collections.synchronizedMap(new HashMap<String, String>());
paramsList = Collections.synchronizedList(new ArrayList<Param>());
}
@@ -161,7 +152,6 @@
* @param param The invoke parameter.
*/
public final void addParam(final Param param) {
- params.put(param.getName(), param.getExpr());
paramsList.add(param);
}