HHH-5594 minor improvement

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20701 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2010-09-25 09:22:53 +00:00
parent c31d2b093d
commit f11f7f28b4
1 changed files with 2 additions and 2 deletions

View File

@ -464,7 +464,7 @@ public class HSQLDialect extends Dialect {
}
/**
* Different behaviour for GLOBAL TEMPORARY (1.8) and LOCAL TEMPORARY (2.0)
* Different behavior for GLOBAL TEMPORARY (1.8) and LOCAL TEMPORARY (2.0)
* <p/>
* Possible return values and their meanings:<ul>
* <li>{@link Boolean#TRUE} - Unequivocally, perform the temporary table DDL
@ -653,7 +653,7 @@ public class HSQLDialect extends Dialect {
}
public String toBooleanValueString(boolean bool) {
return bool ? "true" : "false";
return String.valueOf( bool );
}
public boolean supportsTupleDistinctCounts() {