Skip to content

Commit

Permalink
Bumped spring framework dependency version to 6.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ball, Nware committed May 15, 2024
1 parent fe511e4 commit 23623eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public static Predicate<RequestEntity<JSONObject>> method(final Predicate<HttpMe
* @param statusPredicate statusPredicate
* @return Predicate
*/
public static Predicate<ResponseEntity<JSONObject>> status(final Predicate<HttpStatus> statusPredicate) {
public static Predicate<ResponseEntity<JSONObject>> status(final Predicate<HttpStatusCode> statusPredicate) {
return response -> statusPredicate.apply(response.getStatusCode());
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<rest-assured.version>4.4.0</rest-assured.version>
<redisques.version>3.1.0</redisques.version>
<rest-storage.version>3.1.1</rest-storage.version>
<springframework.version>5.3.27</springframework.version>
<springframework.version>6.1.4</springframework.version>
<slf4j.version>2.0.10</slf4j.version>
<quartz.version>2.3.2</quartz.version>
<vertx.version>4.5.2</vertx.version>
Expand Down

0 comments on commit 23623eb

Please sign in to comment.