Skip to content

Commit

Permalink
Merge branch '3.2.x' into 3.3.x
Browse files Browse the repository at this point in the history
Closes gh-41949
  • Loading branch information
snicoll committed Aug 20, 2024
2 parents 1d337b7 + 1a2d1c5 commit d62a5ac
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2022 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -24,18 +24,15 @@
public class MyUserHandler {

public ServerResponse getUser(ServerRequest request) {
/**/
return ServerResponse.ok().build();
/**/ return ServerResponse.ok().build();
}

public ServerResponse getUserCustomers(ServerRequest request) {
/**/
return ServerResponse.ok().build();
/**/ return ServerResponse.ok().build();
}

public ServerResponse deleteUser(ServerRequest request) {
/**/
return ServerResponse.ok().build();
/**/ return ServerResponse.ok().build();
}

}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2022 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -26,15 +26,15 @@ import reactor.core.publisher.Mono
class MyUserHandler {

fun getUser(request: ServerRequest?): Mono<ServerResponse> {
return ServerResponse.ok().build()
/**/ return ServerResponse.ok().build()
}

fun getUserCustomers(request: ServerRequest?): Mono<ServerResponse> {
return ServerResponse.ok().build()
/**/ return ServerResponse.ok().build()
}

fun deleteUser(request: ServerRequest?): Mono<ServerResponse> {
return ServerResponse.ok().build()
/**/ return ServerResponse.ok().build()
}

}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2022 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -25,15 +25,15 @@ import org.springframework.web.servlet.function.ServerResponse
class MyUserHandler {

fun getUser(request: ServerRequest?): ServerResponse {
return ServerResponse.ok().build()
/**/ return ServerResponse.ok().build()
}

fun getUserCustomers(request: ServerRequest?): ServerResponse {
return ServerResponse.ok().build()
/**/ return ServerResponse.ok().build()
}

fun deleteUser(request: ServerRequest?): ServerResponse {
return ServerResponse.ok().build()
/**/ return ServerResponse.ok().build()
}

}

0 comments on commit d62a5ac

Please sign in to comment.