Skip to content

Commit

Permalink
Fix copy/paste typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alesj committed Feb 18, 2024
1 parent 1fd7006 commit 1ec895c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions docs/src/main/asciidoc/hibernate-orm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1350,11 +1350,6 @@ and annotating the implementation with the appropriate qualifiers:
@JsonFormat // <1>
@PersistenceUnitExtension // <2>
public class MyJsonFormatMapper implements FormatMapper { // <3>
@Override
public String inspect(String sql) {
// ...
return sql;
}
@Override
public <T> T fromString(CharSequence charSequence, JavaType<T> javaType, WrapperOptions wrapperOptions) {
// ...
Expand Down Expand Up @@ -1382,11 +1377,6 @@ In case of a custom XML format mapper, a different CDI qualifier must be applied
@XmlFormat // <1>
@PersistenceUnitExtension // <2>
public class MyJsonFormatMapper implements FormatMapper { // <3>
@Override
public String inspect(String sql) {
// ...
return sql;
}
@Override
public <T> T fromString(CharSequence charSequence, JavaType<T> javaType, WrapperOptions wrapperOptions) {
// ...
Expand Down

0 comments on commit 1ec895c

Please sign in to comment.