Fixing the pass along of compareTransients to the reflectionCompare method as identified by Robert Radkiewicz in LANG-635

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@965941 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2010-07-20 18:10:34 +00:00
parent 05fbbf646d
commit 731c0040fe
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ public class CompareToBuilder implements Builder<Integer> {
public static int reflectionCompare(Object lhs, Object rhs, boolean compareTransients,
Class<?> reflectUpToClass)
{
return reflectionCompare(lhs, rhs, false, reflectUpToClass, null);
return reflectionCompare(lhs, rhs, compareTransients, reflectUpToClass, null);
}
/**