summaryrefslogtreecommitdiffstats
path: root/qadevOOo/tests/java/ifc/text/_XTextFieldsSupplier.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/text/_XTextFieldsSupplier.java')
-rw-r--r--qadevOOo/tests/java/ifc/text/_XTextFieldsSupplier.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/ifc/text/_XTextFieldsSupplier.java b/qadevOOo/tests/java/ifc/text/_XTextFieldsSupplier.java
index e23ef8d94d3e..e8fe1dc78e61 100644
--- a/qadevOOo/tests/java/ifc/text/_XTextFieldsSupplier.java
+++ b/qadevOOo/tests/java/ifc/text/_XTextFieldsSupplier.java
@@ -93,8 +93,8 @@ public class _XTextFieldsSupplier extends MultiMethodTest {
if (mbCreateFieldMaster) {
Object FieldMaster = _oMSF.createInstance("com.sun.star.text.FieldMaster.User");
- XPropertySet PFieldMaster = (XPropertySet) UnoRuntime.queryInterface
- (XPropertySet.class,(XInterface) FieldMaster);
+ XPropertySet PFieldMaster = UnoRuntime.queryInterface
+ (XPropertySet.class,FieldMaster);
XDependentTextField xTF = UnoRuntime.queryInterface(XDependentTextField.class,aField);
@@ -166,7 +166,7 @@ public class _XTextFieldsSupplier extends MultiMethodTest {
*/
private void setMethodFalse(String method, Exception e) {
log.println("Exception while executing '" + method + "'");
- e.printStackTrace((PrintWriter)log);
+ e.printStackTrace(log);
tRes.tested(method, false);
}