diff options
author | Pascal Junck <pjunck@openoffice.org> | 2004-11-02 10:44:23 +0000 |
---|---|---|
committer | Pascal Junck <pjunck@openoffice.org> | 2004-11-02 10:44:23 +0000 |
commit | 6ea1945242e111ee76cbf108d3dcbbb56a713091 (patch) | |
tree | b6d7a502e1473cca40bab754851abeba39ccfc4c /qadevOOo/runner/org/openoffice | |
parent | 2089212ade7233813945a3cd2201f92c783034a6 (diff) |
INTEGRATION: CWS qadev19 (1.5.28); FILE MERGED
2004/10/21 07:51:45 sg 1.5.28.1: #i34422#CHG: updated
Diffstat (limited to 'qadevOOo/runner/org/openoffice')
-rw-r--r-- | qadevOOo/runner/org/openoffice/RunnerService.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/runner/org/openoffice/RunnerService.java b/qadevOOo/runner/org/openoffice/RunnerService.java index d6644a101049..677c496fea62 100644 --- a/qadevOOo/runner/org/openoffice/RunnerService.java +++ b/qadevOOo/runner/org/openoffice/RunnerService.java @@ -2,9 +2,9 @@ * * $RCSfile: RunnerService.java,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change:$Date: 2004-05-03 08:48:18 $ + * last change:$Date: 2004-11-02 11:44:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -253,10 +253,10 @@ public class RunnerService implements XJob, XServiceInfo, // get Jar file from connection java.util.jar.JarFile f = con.getJarFile(); // Enumerate over all entries - java.util.Enumeration enum = f.entries(); + java.util.Enumeration aEnum = f.entries(); - while (enum.hasMoreElements()) { - String entry = enum.nextElement().toString(); + while (aEnum.hasMoreElements()) { + String entry = aEnum.nextElement().toString(); if (entry.endsWith(".csv")) { String module = null; |