From 9e022ae9042108d723ab400a1d0e16c8c06c85f6 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Tue, 29 Mar 2005 10:56:28 +0000 Subject: INTEGRATION: CWS qadev22 (1.3.110); FILE MERGED 2005/03/18 13:04:35 cn 1.3.110.1: #i45397# log the URL to store --- qadevOOo/tests/java/ifc/frame/_XStorable.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'qadevOOo/tests/java/ifc/frame/_XStorable.java') diff --git a/qadevOOo/tests/java/ifc/frame/_XStorable.java b/qadevOOo/tests/java/ifc/frame/_XStorable.java index c8acc6d8f171..d28bd16dc861 100644 --- a/qadevOOo/tests/java/ifc/frame/_XStorable.java +++ b/qadevOOo/tests/java/ifc/frame/_XStorable.java @@ -2,9 +2,9 @@ * * $RCSfile: _XStorable.java,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change:$Date: 2003-09-08 10:40:05 $ + * last change:$Date: 2005-03-29 11:56:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -175,8 +175,9 @@ public class _XStorable extends MultiMethodTest { String url = (String) utils.getOfficeTemp( (XMultiServiceFactory)tParam.getMSF()); - url += "xstorable.store.as.test"; if (url != null) { + url += "xstorable.store.as.test"; + log.println("store as '" + url + "'"); try { oObj.storeAsURL(url, new PropertyValue[0]); storeUrl = url; @@ -202,8 +203,9 @@ public class _XStorable extends MultiMethodTest { String url = (String) utils.getOfficeTemp( (XMultiServiceFactory)tParam.getMSF()); - url += "xstorable.store.as.test"; if (url != null) { + url += "xstorable.store.as.test"; + log.println("store to '" + url + "'"); try { oObj.storeToURL(url, new PropertyValue[0]); tRes.tested("storeToURL()", true); -- cgit