Fixed wrong reference.
authorMarco Zanon <info@marcozanon.com>
Wed, 1 Feb 2012 18:28:51 +0000 (18:28 +0000)
committerMarco Zanon <info@marcozanon.com>
Wed, 1 Feb 2012 18:28:51 +0000 (18:28 +0000)
src/java/com/marcozanon/macaco/web/ui/MWebMessage.java

index 7ad9bf75667ed2bb439fd91ee7c7990f6e29a2d1..5f138132ce71701d9be6af29af59c65e8d30f02c 100644 (file)
@@ -109,7 +109,7 @@ public class MWebMessage extends MObject {
             MJsonObject tmpMessageParameters = new MJsonObject();
             for (String parameterKey: this.getParametersReference().keySet()) {
                 tmpString = new MJsonString();
-                tmpString.setValue(this.getParameters().get(parameterKey));
+                tmpString.setValue(this.getParametersReference().get(parameterKey));
                 tmpMessageParameters.setValue(parameterKey, tmpString);
             }
             tmpMessage.setValue("parameters", tmpMessageParameters);