Author: rahul
Date: Tue Jan 15 14:57:26 2008
New Revision: 612283
URL: http://svn.apache.org/viewvc?rev=612283&view=rev
Log:
Type safety improvement.
Modified:
commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/invoke/Invoker.java
Modified:
commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/invoke/Invoker.java
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/invoke/Invoker.java?rev=612283&r1=612282&r2=612283&view=diff
==============================================================================
---
commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/invoke/Invoker.java
(original)
+++
commons/proper/scxml/branches/J5/src/main/java/org/apache/commons/scxml/invoke/Invoker.java
Tue Jan 15 14:57:26 2008
@@ -93,7 +93,7 @@
* @throws InvokerException In case there is a fatal problem with
* invoking the source.
*/
- void invoke(String source, Map params)
+ void invoke(String source, Map<String, Object> params)
throws InvokerException;
/**