[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:
Diego Plentz 2007-10-28 16:51:03 +00:00
parent 587bf728af
commit 34c7ec1cd3
1 changed files with 1 additions and 1 deletions

View File

@ -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 );