Re: Porting URIBuilder call sites

2018-07-13 Thread Gary Gregory
On Fri, Jul 13, 2018 at 12:38 PM Pascal Schumacher wrote: > I guess this was send to the wrong mailing list? > Yep, sorry. Gary > > Am 12.07.2018 um 17:22 schrieb Gary Gregory: > > Hi All, > > > > I just had to port this 'nice' fluent code: > > > > final String uri = new URIBuilde

Re: Porting URIBuilder call sites

2018-07-13 Thread Pascal Schumacher
I guess this was send to the wrong mailing list? Am 12.07.2018 um 17:22 schrieb Gary Gregory: Hi All, I just had to port this 'nice' fluent code: final String uri = new URIBuilder() .setScheme(scheme) .setHost("localhost") .setUse

Porting URIBuilder call sites

2018-07-12 Thread Gary Gregory
Hi All, I just had to port this 'nice' fluent code: final String uri = new URIBuilder() .setScheme(scheme) .setHost("localhost") .setUserInfo(userInfo) .setPort(proxyPort) .setPath(path) .s