fix use of & character in javadoc

This commit is contained in:
Gavin 2023-05-30 15:47:58 +02:00
parent fef4f904d7
commit 3c108d1413
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ import org.hibernate.metamodel.spi.ValueAccess;
* final BigDecimal value = valueAccess.getValue(0, BigDecimal.class); * final BigDecimal value = valueAccess.getValue(0, BigDecimal.class);
* final Currency currency = valueAccess.getValue(1, Currency.class); * final Currency currency = valueAccess.getValue(1, Currency.class);
* *
* if ( value == null && currency == null ) { * if ( value == null && currency == null ) {
* return null; * return null;
* } * }
* return new MonetaryAmount( value, currency ); * return new MonetaryAmount( value, currency );