> @@ -138,20 +138,35 @@ public UriBuilder host(String host) {
> }
>
> public UriBuilder path(@Nullable String path) {
> + return path(path, true);
> + }
> +
> + public UriBuilder path(@Nullable String path, boolean urlDecode) {
Can we change `UriBuilder` to not encode these paths until `build()`? We keep
tweaking this behavior, the last time in
12f29fd8a9e50203acc12ccf794cf73c0abf5703, and the fragility of this code gives
me pause.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/388/files#r13255411