HHH-10343 Fixed precision and scale for elements of basic types in persistent collections

This commit is contained in:
Bobo Häggström 2015-11-30 14:56:20 +01:00 committed by Andrea Boriero
parent 3267a9221f
commit 86c0746c0b
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ public class PluralAttributeElementSourceBasicImpl
public SizeSource getSizeSource() { public SizeSource getSizeSource() {
return Helper.interpretSizeSource( return Helper.interpretSizeSource(
jaxbElement.getLength(), jaxbElement.getLength(),
jaxbElement.getPrecision(), jaxbElement.getScale(),
jaxbElement.getScale() jaxbElement.getPrecision()
); );
} }
} }