| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -107,7 +107,10 @@ public HttpRequest queryString(String name, Object value) { | |||
| 107 | 107 | queryString.append("?"); | |
| 108 | 108 | } | |
| 109 | 109 | try { | |
| 110 | - queryString.append(name).append("=").append(URLEncoder.encode((value == null) ? "" : value.toString(), "UTF-8")); | ||
| 110 | + queryString | ||
| 111 | + .append(URLEncoder.encode(name)) | ||
| 112 | + .append("=") | ||
| 113 | + .append(URLEncoder.encode((value == null) ? "" : value.toString(), "UTF-8")); | ||
| 111 | 114 | } catch (UnsupportedEncodingException e) { | |
| 112 | 115 | throw new RuntimeException(e); | |
| 113 | 116 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments