summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/complex/sc/CalcRTL.java45
1 files changed, 9 insertions, 36 deletions
diff --git a/sc/qa/complex/sc/CalcRTL.java b/sc/qa/complex/sc/CalcRTL.java
index 9f946a51235a..f30fed0d5a91 100644
--- a/sc/qa/complex/sc/CalcRTL.java
+++ b/sc/qa/complex/sc/CalcRTL.java
@@ -402,16 +402,9 @@ public class CalcRTL
System.out.println("Read only property '" + propName +
"' has changed");
- try {
- if (!util.utils.isVoid(oldValue) && oldValue instanceof Any) {
- oldValue = AnyConverter.toObject( new Type(oldValue.getClass()), oldValue);
- }
-
- System.out.println("old = " + toString(oldValue));
- System.out.println("new = " + toString(newValue));
- System.out.println("result = " + toString(resValue));
- } catch (com.sun.star.lang.IllegalArgumentException iae) {
- }
+ System.out.println("old = " + toString(oldValue));
+ System.out.println("new = " + toString(newValue));
+ System.out.println("result = " + toString(resValue));
return false;
} else {
@@ -431,19 +424,9 @@ public class CalcRTL
System.out.println("Value for '" + propName +
"' hasn't changed as expected");
- try {
- if (!util.utils.isVoid(oldValue) &&
- oldValue instanceof Any) {
- oldValue = AnyConverter.toObject(
- new Type(((Any) oldValue).getClass()),
- oldValue);
- }
-
- System.out.println("old = " + toString(oldValue));
- System.out.println("new = " + toString(newValue));
- System.out.println("result = " + toString(resValue));
- } catch (com.sun.star.lang.IllegalArgumentException iae) {
- }
+ System.out.println("old = " + toString(oldValue));
+ System.out.println("new = " + toString(newValue));
+ System.out.println("result = " + toString(resValue));
if (resValue != null) {
if ((!ValueComparer.equalValue(resValue, oldValue)) ||
@@ -460,19 +443,9 @@ public class CalcRTL
} else {
System.out.println("Property '" + propName + "' OK");
- try {
- if (!util.utils.isVoid(oldValue) &&
- oldValue instanceof Any) {
- oldValue = AnyConverter.toObject(
- new Type(((Any) oldValue).getClass()),
- oldValue);
- }
-
- System.out.println("old = " + toString(oldValue));
- System.out.println("new = " + toString(newValue));
- System.out.println("result = " + toString(resValue));
- } catch (com.sun.star.lang.IllegalArgumentException iae) {
- }
+ System.out.println("old = " + toString(oldValue));
+ System.out.println("new = " + toString(newValue));
+ System.out.println("result = " + toString(resValue));
return true;
}