Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
vladmihalcea committed Jan 30, 2024
1 parent 4ada7d3 commit bb998cb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 7 additions & 0 deletions changelog.txt
@@ -1,3 +1,10 @@
Version 3.7.1 - January 30, 2024
================================================================================

Add support for Hibernate 6.4 #685

Remove hypersistence-utils-hibernate-5 module #693

Version 3.7.0 - December 18, 2023
================================================================================

Expand Down
@@ -1,5 +1,7 @@
package io.hypersistence.utils.hibernate.type.model;

import io.hypersistence.utils.hibernate.type.json.internal.JacksonUtil;

import java.io.Serializable;
import java.util.Objects;

Expand Down Expand Up @@ -30,10 +32,7 @@ public void setCity(String city) {

@Override
public String toString() {
return "{" +
"country='" + country + '\'' +
", city='" + city + '\'' +
'}';
return JacksonUtil.toString(this);
}

@Override
Expand Down

0 comments on commit bb998cb

Please sign in to comment.