[HHH-1916] param values in generator element should be trimmed during HbmBinding
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14156 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
587bf728af
commit
34c7ec1cd3
|
@ -1996,7 +1996,7 @@ public final class HbmBinder {
|
|||
Iterator iter = subnode.elementIterator( "param" );
|
||||
while ( iter.hasNext() ) {
|
||||
Element childNode = (Element) iter.next();
|
||||
params.setProperty( childNode.attributeValue( "name" ), childNode.getText() );
|
||||
params.setProperty( childNode.attributeValue( "name" ), childNode.getTextTrim() );
|
||||
}
|
||||
|
||||
model.setIdentifierGeneratorProperties( params );
|
||||
|
|
Loading…
Reference in New Issue