[Libreoffice-commits] core.git: qadevOOo/tests

Stephan Bergmann sbergman at redhat.com
Wed Oct 14 08:07:58 PDT 2015


 qadevOOo/tests/java/ifc/util/_XCloneable.java |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9fd1338d6a6e4778ba636f24fb22ba4102f16293
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Oct 14 17:05:06 2015 +0200

    Make _XCloneable.checkImplementationID return a useful value again
    
    ...it happened to return a value that would match one's expectaions until
    f1dfc5690a2b1a24e2d2f707a50c34d7df61dc4d "cid#1326854 EC: Comparing incompatible
    types for equality" fixed the method but failed to also straighten its odd
    return value.
    
    Change-Id: I9b98be8c86a176fec37505d4337b708ac9bbf5de

diff --git a/qadevOOo/tests/java/ifc/util/_XCloneable.java b/qadevOOo/tests/java/ifc/util/_XCloneable.java
index c37dcca..62de17b 100644
--- a/qadevOOo/tests/java/ifc/util/_XCloneable.java
+++ b/qadevOOo/tests/java/ifc/util/_XCloneable.java
@@ -74,7 +74,7 @@ public class _XCloneable extends MultiMethodTest {
             log.println("ImplementationID equals the clone has the same id as the original Object");
             log.println("------------------------------------------------------------------------");
         }
-        return !res;
+        return res;
     }
 
     protected String getImplementationName(XInterface ifc) {


More information about the Libreoffice-commits mailing list