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 3d92590eb3
commit cac8b0d8c5
1 changed files with 2 additions and 2 deletions

View File

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