summaryrefslogtreecommitdiffstats
path: root/qadevOOo/runner/lib
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-22 12:37:48 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-22 12:53:27 +0200
commiteda5f1fca8a8a1ed5c98bb6d7486283cccb08b37 (patch)
tree270f007dbfeaec3dcacabb2042eebebafda9fe9b /qadevOOo/runner/lib
parentcrashtesting+ubsan: abi2079-1.html memcpy null source with 0 len (diff)
downloadcore-eda5f1fca8a8a1ed5c98bb6d7486283cccb08b37.tar.gz
core-eda5f1fca8a8a1ed5c98bb6d7486283cccb08b37.zip
A "workaround to CodeWarrior's compiler bug" is probably not needed anymore
Change-Id: I84cb3bb1e3fa42a7b96286f317aa0fb4e8ada8f3
Diffstat (limited to 'qadevOOo/runner/lib')
-rw-r--r--qadevOOo/runner/lib/MultiPropertyTest.java22
1 files changed, 2 insertions, 20 deletions
diff --git a/qadevOOo/runner/lib/MultiPropertyTest.java b/qadevOOo/runner/lib/MultiPropertyTest.java
index cbf8f5db93ea..57a82fff86be 100644
--- a/qadevOOo/runner/lib/MultiPropertyTest.java
+++ b/qadevOOo/runner/lib/MultiPropertyTest.java
@@ -466,7 +466,7 @@ public class MultiPropertyTest extends MultiMethodTest
*/
protected boolean compare(Object obj1, Object obj2)
{
- return callCompare(obj1, obj2);
+ return MultiPropertyTest.this.compare(obj1, obj2);
}
/**
@@ -476,7 +476,7 @@ public class MultiPropertyTest extends MultiMethodTest
*/
protected String toString(Object obj)
{
- return callToString(obj);
+ return MultiPropertyTest.this.toString(obj);
}
}
@@ -557,15 +557,6 @@ public class MultiPropertyTest extends MultiMethodTest
}
/**
- * The method just calls compare. This is a workaround to CodeWarrior's
- * compiler bug.
- */
- private boolean callCompare(Object obj1, Object obj2)
- {
- return compare(obj1, obj2);
- }
-
- /**
* Compares two object. In the implementation calls obj1.equals(obj2).
*/
protected boolean compare(Object obj1, Object obj2)
@@ -574,15 +565,6 @@ public class MultiPropertyTest extends MultiMethodTest
}
/**
- * The method just calls toString. This is a workaround to
- * CodeWarrior's compiler bug.
- */
- private String callToString(Object obj)
- {
- return toString(obj);
- }
-
- /**
* Gets string representation of the obj. In the implementation
* returns obj.toString().
*/