fixed exception message spacing
This commit is contained in:
parent
dda0c4c37e
commit
5d49468acf
|
@ -66,7 +66,7 @@ public class Sequence implements Exportable {
|
|||
if ( this.initialValue != initialValue ) {
|
||||
throw new HibernateException(
|
||||
String.format(
|
||||
"Multiple references to database sequence [%s] were encountered attempting to" +
|
||||
"Multiple references to database sequence [%s] were encountered attempting to " +
|
||||
"set conflicting values for 'initial value'. Found [%s] and [%s]",
|
||||
exportIdentifier,
|
||||
this.initialValue,
|
||||
|
@ -77,7 +77,7 @@ public class Sequence implements Exportable {
|
|||
if ( this.incrementSize != incrementSize ) {
|
||||
throw new HibernateException(
|
||||
String.format(
|
||||
"Multiple references to database sequence [%s] were encountered attempting to" +
|
||||
"Multiple references to database sequence [%s] were encountered attempting to " +
|
||||
"set conflicting values for 'increment size'. Found [%s] and [%s]",
|
||||
exportIdentifier,
|
||||
this.incrementSize,
|
||||
|
|
Loading…
Reference in New Issue