HHH-17053 Fix wrong order in comments
This commit is contained in:
parent
9e4a56c651
commit
263e024629
|
@ -60,8 +60,8 @@ import org.hibernate.metamodel.spi.ValueAccess;
|
|||
*
|
||||
* @Override
|
||||
* public MonetaryAmount instantiate(ValueAccess valueAccess, SessionFactoryImplementor sessionFactory) {
|
||||
* final BigDecimal value = valueAccess.getValue(0, BigDecimal.class);
|
||||
* final Currency currency = valueAccess.getValue(1, Currency.class);
|
||||
* final Currency currency = valueAccess.getValue(0, Currency.class);
|
||||
* final BigDecimal value = valueAccess.getValue(1, BigDecimal.class);
|
||||
*
|
||||
* if ( value == null && currency == null ) {
|
||||
* return null;
|
||||
|
|
Loading…
Reference in New Issue