Description
PojoUtils.fieldListToGetExpression() has a bug in this statement within the loop:
sb.append(sb).append(getSingleFieldExpression(clazz, field)).append(JAVA_DOT);
The ".append(sb)" is superfluous and actually causes the wrong string to be generated.