Parameterize URI parsing tests

Closes gh-33639
This commit is contained in:
rstoyanchev
2024-10-07 18:32:09 +01:00
parent d6fcad9ad7
commit 2389748e25
3 changed files with 231 additions and 176 deletions

View File

@@ -518,9 +518,9 @@ public class UriComponentsBuilder implements UriBuilder, Cloneable {
}
path(record.path().toString());
query(record.query());
if (StringUtils.hasText(record.fragment())) {
fragment(record.fragment());
}
}
if (StringUtils.hasText(record.fragment())) {
fragment(record.fragment());
}
return this;
}