Bump io.spring.javaformat:spring-javaformat-checkstyle from 0.0.42 to 0.0.43

This commit is contained in:
Marcus Hert Da Coregio
2024-08-21 08:43:05 -03:00
parent 3fa19911e7
commit ad333a49af
20 changed files with 23 additions and 23 deletions

View File

@@ -64,11 +64,11 @@ class IndexDocTests {
}
// tag::repository-demo[]
public class RepositoryDemo<S extends Session> {
class RepositoryDemo<S extends Session> {
private SessionRepository<S> repository; // <1>
public void demo() {
void demo() {
S toSave = this.repository.createSession(); // <2>
// <3>
@@ -98,11 +98,11 @@ class IndexDocTests {
}
// tag::expire-repository-demo[]
public class ExpiringRepositoryDemo<S extends Session> {
class ExpiringRepositoryDemo<S extends Session> {
private SessionRepository<S> repository; // <1>
public void demo() {
void demo() {
S toSave = this.repository.createSession(); // <2>
// ...
toSave.setMaxInactiveInterval(Duration.ofSeconds(30)); // <3>