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

(cherry picked from commit ad704a194e)
This commit is contained in:
Peter 2015-06-18 14:54:02 +01:00 committed by Gail Badner
parent 524f7f60c5
commit 6c3e1d3f8d
1 changed files with 1 additions and 1 deletions

View File

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