Skip to content

Commit

Permalink
Spring boot 2.7.18
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagolvlsantos committed May 1, 2024
1 parent dee9222 commit 15e830a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.9</version>
<version>2.7.18</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class OrikaConfig {
private DefaultMapperFactory factory;

@Bean
public MapperFactory mapperFactory() {
protected MapperFactory mapperFactory() {
init();
return factory;
}
Expand All @@ -29,7 +29,7 @@ private void init() {
}

@Bean
public MapperFacade mapperFacade() {
protected MapperFacade mapperFacade() {
init();
return factory.getMapperFacade();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public class JsonPredicateConfiguration {

@Bean
public IPredicateFactory factory() {
protected IPredicateFactory factory() {
return new PredicateFactoryJson();
}
}

0 comments on commit 15e830a

Please sign in to comment.