1
0
mirror of synced 2026-08-05 01:36:56 +00:00

Unnecessary conversion to String

This commit is contained in:
Lars Grefer
2019-08-09 00:41:46 +02:00
parent eddcd1622f
commit 8d0ca14e55
3 changed files with 4 additions and 4 deletions
@@ -75,7 +75,7 @@ public class RedirectUrlBuilder {
// Append the port number if it's not standard for the scheme
if (port != (scheme.equals("http") ? 80 : 443)) {
sb.append(":").append(Integer.toString(port));
sb.append(":").append(port);
}
if (contextPath != null) {