summaryrefslogtreecommitdiffstats
path: root/qadevOOo/tests/java/ifc/sdb/_DataAccessDescriptor.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/sdb/_DataAccessDescriptor.java')
-rw-r--r--qadevOOo/tests/java/ifc/sdb/_DataAccessDescriptor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/ifc/sdb/_DataAccessDescriptor.java b/qadevOOo/tests/java/ifc/sdb/_DataAccessDescriptor.java
index 450b4b5af02d..f8f2d94a5b43 100644
--- a/qadevOOo/tests/java/ifc/sdb/_DataAccessDescriptor.java
+++ b/qadevOOo/tests/java/ifc/sdb/_DataAccessDescriptor.java
@@ -76,16 +76,16 @@ public class _DataAccessDescriptor extends MultiPropertyTest {
try{
log.println("try to get value from property...");
- XConnection oldValue = (XConnection) UnoRuntime.queryInterface(XConnection.class,oObj.getPropertyValue(propName));
+ XConnection oldValue = UnoRuntime.queryInterface(XConnection.class,oObj.getPropertyValue(propName));
log.println("try to get value from object relation...");
- XConnection newValue = (XConnection) UnoRuntime.queryInterface(XConnection.class,tEnv.getObjRelation("DataAccessDescriptor.XConnection"));
+ XConnection newValue = UnoRuntime.queryInterface(XConnection.class,tEnv.getObjRelation("DataAccessDescriptor.XConnection"));
log.println("set property to a new value...");
oObj.setPropertyValue(propName, newValue);
log.println("get the new value...");
- XConnection getValue = (XConnection) UnoRuntime.queryInterface(XConnection.class,oObj.getPropertyValue(propName));
+ XConnection getValue = UnoRuntime.queryInterface(XConnection.class,oObj.getPropertyValue(propName));
tRes.tested(propName, this.compare(newValue, getValue));
} catch (com.sun.star.beans.PropertyVetoException e){