()
| 347 | } |
| 348 | |
| 349 | private void updateRaw() { |
| 350 | StringBuilder sbRaw = new StringBuilder(); |
| 351 | sbRaw.append(this.protocol); |
| 352 | for (String curHost : this.getHosts()) { |
| 353 | sbRaw.append("/" + curHost); |
| 354 | } |
| 355 | for (String curPath : this.getPaths()) { |
| 356 | sbRaw.append("/" + curPath); |
| 357 | } |
| 358 | |
| 359 | if (this.query != null) { |
| 360 | sbRaw.append("?" + this.getQueryString()); |
| 361 | } |
| 362 | this.raw = sbRaw.toString(); |
| 363 | |
| 364 | } |
| 365 | |
| 366 | |
| 367 | /** |
nothing calls this directly
no test coverage detected