HHH-10343 Fixed precision and scale for elements of basic types in persistent collections
This commit is contained in:
parent
3267a9221f
commit
86c0746c0b
|
@ -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()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue