HHH-9869 - fix the order in which SizeExpression.toString() emits size and property so that the toString of a SizeExpression is logically correct

This commit is contained in:
Peter 2015-06-18 14:54:02 +01:00 committed by Steve Ebersole
parent dd0547efdc
commit ad704a194e
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class SizeExpression implements Criterion {
@Override
public String toString() {
return propertyName + ".size" + op + size;
return Integer.toString(size) + op + propertyName + ".size";
}
}