Skip to content

Commit c855923

Browse files
committed
chore: fix formatting
1 parent 5746c34 commit c855923

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

components/http/okHttp/src/main/java/com/microsoft/kiota/http/middleware/options/RedirectHandlerOption.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ void scrubHeaders(
7070
Objects.requireNonNull(originalUrl, "parameter originalUrl cannot be null");
7171
Objects.requireNonNull(newUrl, "parameter newUrl cannot be null");
7272

73-
// Remove Authorization and Cookie headers if the request's scheme, host, or port changes
73+
// Remove Authorization and Cookie headers if the request's scheme, host, or port
74+
// changes
7475
boolean isDifferentHostOrScheme =
7576
!newUrl.host().equalsIgnoreCase(originalUrl.host())
7677
|| !newUrl.scheme().equalsIgnoreCase(originalUrl.scheme())

0 commit comments

Comments
 (0)