You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2019/06/01 21:01:42 UTC

[juneau] branch master updated: Fix debug bug in UrlEncodingSerializerSession

This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new 3872dae  Fix debug bug in UrlEncodingSerializerSession
3872dae is described below

commit 3872dae90219ff003162e46a693b38818a5a817e
Author: JamesBognar <ja...@apache.org>
AuthorDate: Sat Jun 1 17:01:14 2019 -0400

    Fix debug bug in UrlEncodingSerializerSession
---
 .../java/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.java b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.java
index a1374c8..c14c6d3 100644
--- a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.java
+++ b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.java
@@ -139,6 +139,7 @@ public class UrlEncodingSerializerSession extends UonSerializerSession {
 			// mock key/value pair with a "_value" key.
 			out.append("_value=");
 			super.serializeAnything(out, o, null, null, null);
+			return out;
 		}
 
 		pop();