Skip to content

Commit

Permalink
Client URL scheme validation pipeline fixes 3
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkec committed Aug 27, 2023
1 parent be3e911 commit ccef6c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ public static ClientUri create(URI baseUri) {
}

@Override
protected Set<String> supportedSchemes() {
return SUPPORTED_SCHEMES;
public WsClientUri copy() {
return WsClientUri.create(this);
}

@Override
public WsClientUri clone() {
return WsClientUri.create(this);
protected Set<String> supportedSchemes() {
return SUPPORTED_SCHEMES;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
handlers=io.helidon.logging.jul.HelidonConsoleHandler
java.util.logging.SimpleFormatter.format=%1$tY.%1$tm.%1$td %1$tH:%1$tM:%1$tS %4$s %3$s !thread!: %5$s%6$s%n

.level=FINEST
.level=INFO

0 comments on commit ccef6c9

Please sign in to comment.