Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
usfalami committed Jul 23, 2024
1 parent 61f1937 commit 3af33fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/usf/inspect/core/Helper.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static void warnStackTrace(String msg) {
public static String prettyURLFormat(String user, String protocol, String host, int port, String path) {
var s = isNull(user) ? "" : '<' + user + '>';
if(nonNull(protocol)) {
s += protocol + "://";
s+= protocol + "://";
}
if(nonNull(host)) {
s+= host;
Expand Down

0 comments on commit 3af33fd

Please sign in to comment.