]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
FOP-2157: Deadlock in CompareUtil class; fixed typo spotted by Jens Schreiber
authorLuis Bernardo <lbernardo@apache.org>
Wed, 16 Sep 2015 15:43:21 +0000 (15:43 +0000)
committerLuis Bernardo <lbernardo@apache.org>
Wed, 16 Sep 2015 15:43:21 +0000 (15:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1703427 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/util/CompareUtil.java

index 6829336db96e2d6a488ab883769711f041fe5e03..4c83da1aa4b2c6580186cd3cec5a7b343536576d 100644 (file)
@@ -44,7 +44,7 @@ public final class CompareUtil {
      */
     public static boolean equal(Object o1, Object o2) {
         int o1Hash = System.identityHashCode(o1);
-        int o2Hash = System.identityHashCode(o1);
+        int o2Hash = System.identityHashCode(o2);
         if (o1Hash == o2Hash && o1 != o2 && o1Hash != 0) {
             // in the rare case of different objects with the same hash code,
             // the tieLock object is used to synchronize access