summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/share
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2003-11-18 15:16:15 +0000
committerKurt Zenker <kz@openoffice.org>2003-11-18 15:16:15 +0000
commit256c5017c549fc3ae43b59a8688f5ee7e201b636 (patch)
treea21c7467374edca6bb11b0a292cc3f720bcf2b67 /qadevOOo/runner/share
parentf25f13a90f29beef79fb44ea2a070a16ae31b1cf (diff)
INTEGRATION: CWS qadev13 (1.3.2); FILE MERGED
2003/11/07 14:54:01 sg 1.3.2.2: #113007#CHG: fixed stream not closed bug 2003/11/07 13:46:05 sg 1.3.2.1: #113007#CHG: fixed stream not closed bug
Diffstat (limited to 'qadevOOo/runner/share')
-rw-r--r--qadevOOo/runner/share/DescGetter.java11
1 files changed, 8 insertions, 3 deletions
diff --git a/qadevOOo/runner/share/DescGetter.java b/qadevOOo/runner/share/DescGetter.java
index 405c90dc0235..606992bed2c1 100644
--- a/qadevOOo/runner/share/DescGetter.java
+++ b/qadevOOo/runner/share/DescGetter.java
@@ -2,9 +2,9 @@
*
* $RCSfile: DescGetter.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change:$Date: 2003-10-06 12:40:16 $
+ * last change:$Date: 2003-11-18 16:16:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -112,7 +112,12 @@ public abstract class DescGetter {
System.out.println("Exception while reading scenario");
}
}
-
+ try {
+ scenario.close();
+ } catch (java.io.IOException ioe) {
+ if (debug)
+ System.out.println("Exception while closeing scenario");
+ }
entries = new DescEntry[entryList.size()];
entries = (DescEntry[])entryList.toArray(entries);
return entries;