(StringBuilder sb)
| 382 | } |
| 383 | |
| 384 | private void appendAuthority(StringBuilder sb) { |
| 385 | if (userInfo != null) { |
| 386 | sb.append(userInfo).append('@'); |
| 387 | } |
| 388 | if (host != null) { |
| 389 | sb.append(host); |
| 390 | } |
| 391 | if (port != null) { |
| 392 | sb.append(':').append(port); |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | /** |
| 397 | * Returns the percent-decoded "User Information" component of this URI, or null if not present. |
no test coverage detected