HHH-5006 - hibernate.globally_quoted_identifiers=true and Annotations tests

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19447 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2010-05-10 12:29:29 +00:00
parent 111125eb6e
commit 9d93984ca1

View File

@ -98,7 +98,7 @@ public String normalizeDatabaseIdentifier(final String explicitName, NamingStrat
* @return The identifier accounting for any quoting that need be applied.
*/
public String normalizeIdentifierQuoting(String identifier) {
if ( identifier == null ) {
if ( StringHelper.isEmpty( identifier ) ) {
return null;
}