Skip to content

Commit

Permalink
HHH-12425 Fix a toString() implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Oct 17, 2018
1 parent 738a6c5 commit 05d538e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -171,7 +171,7 @@ public boolean hasAnyUninitializedAttributes() {

@Override
public String toString() {
return "LazyAttributeLoader(entityName=" + entityName + " ,lazyFields=" + lazyFields + ')';
return getClass().getSimpleName() + "(entityName=" + entityName + " ,lazyFields=" + lazyFields + ')';
}

//
Expand Down

0 comments on commit 05d538e

Please sign in to comment.