Re: RFR: 8272707: Resolving URI relative path with no / may lead to incorrect toString

2022-05-26 Thread Alexey Ivanov
On Thu, 26 May 2022 09:18:56 GMT, KIRIYAMA Takuya wrote: > Consider an authority component without trailing "/" as a base URI. When > resolving a relative path against this base URI, the resulting URI is a > concatenated URI without "/". > This behaviour should be fixed, which is rationalized b

RFR: 8272707: Resolving URI relative path with no / may lead to incorrect toString

2022-05-26 Thread KIRIYAMA Takuya
Consider an authority component without trailing "/" as a base URI. When resolving a relative path against this base URI, the resulting URI is a concatenated URI without "/". This behaviour should be fixed, which is rationalized by rfc3986#section-5.2.3. Could you review this fix? -