summaryrefslogtreecommitdiff
path: root/jvmfwk/source/fwkutil.cxx
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2004-05-12 12:42:15 +0000
committerJoachim Lingner <jl@openoffice.org>2004-05-12 12:42:15 +0000
commitfba121d3c40ebb50de60ba14cd35bc0e17d49142 (patch)
tree83cf87d1f7a71b51c85c663c6e74e7dea65eb05c /jvmfwk/source/fwkutil.cxx
parent54308967168c3a07bb811296e234c2897f08a195 (diff)
#i20052#
Diffstat (limited to 'jvmfwk/source/fwkutil.cxx')
-rw-r--r--jvmfwk/source/fwkutil.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/jvmfwk/source/fwkutil.cxx b/jvmfwk/source/fwkutil.cxx
index fbb7099cf29d..397205711f8e 100644
--- a/jvmfwk/source/fwkutil.cxx
+++ b/jvmfwk/source/fwkutil.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fwkutil.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jl $ $Date: 2004-05-07 14:49:41 $
+ * last change: $Author: jl $ $Date: 2004-05-12 13:42:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -659,7 +659,6 @@ javaFrameworkError buildClassPathFromDirectory(const rtl::OUString & relPath,
return JFW_E_ERROR;
}
sBuffer.append(sDirPath);
- sBuffer.appendAscii(szSep);
rtl::OUString sJarExtension(RTL_CONSTASCII_USTRINGPARAM(".jar"));
sal_Int32 nJarExtensionLength = sJarExtension.getLength();
@@ -713,8 +712,8 @@ javaFrameworkError buildClassPathFromDirectory(const rtl::OUString & relPath,
{
return JFW_E_ERROR;
}
- sBuffer.append(sFilePath);
sBuffer.appendAscii(szSep);
+ sBuffer.append(sFilePath);
}
else if (fileErrorCode == osl::FileBase::E_NOENT)
{