File tree 1 file changed +3
-3
lines changed
google-http-client/src/main/java/com/google/api/client/http
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,13 +64,13 @@ public UrlEncodedContent(Object data) {
64
64
}
65
65
66
66
/**
67
- * Initialize the UrlEncodedContent with our without the legacy and deprecated escapeUri encoder
67
+ * Initialize the UrlEncodedContent with or without the legacy and deprecated escapeUri encoder
68
68
* @param data key name/value data
69
- * @param useUriPathEncoding Escapes the string value so it can be safely included in URI path segments.
69
+ * @param useUriPathEncoding escapes the string value so it can be safely included in URI path segments.
70
70
* For details on escaping URIs, see <a href="http://tools.ietf.org/html/rfc3986#section-2.4">RFC 3986 -
71
71
* section 2.4</a>
72
72
*/
73
- public UrlEncodedContent (Object data , Boolean useUriPathEncoding ) {
73
+ public UrlEncodedContent (Object data , boolean useUriPathEncoding ) {
74
74
super (UrlEncodedParser .MEDIA_TYPE );
75
75
setData (data );
76
76
this .uriPathEncodingFlag = useUriPathEncoding ;
You can’t perform that action at this time.
0 commit comments