summaryrefslogtreecommitdiff
path: root/sal/osl/w32
diff options
context:
space:
mode:
Diffstat (limited to 'sal/osl/w32')
-rw-r--r--sal/osl/w32/path_helper.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/sal/osl/w32/path_helper.cxx b/sal/osl/w32/path_helper.cxx
index a15d8bb346ed..c9fb14b00a94 100644
--- a/sal/osl/w32/path_helper.cxx
+++ b/sal/osl/w32/path_helper.cxx
@@ -17,10 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-/*******************************************************************
- Includes
- ******************************************************************/
-
#include "path_helper.hxx"
#include <osl/diagnose.h>
#include <rtl/ustring.hxx>
@@ -28,17 +24,9 @@
#include <algorithm>
#include <wchar.h>
-/*******************************************************************
- Constants
- ******************************************************************/
-
const rtl::OUString BACKSLASH ("\\");
const rtl::OUString SLASH ("/");
-/*******************************************************************
- osl_systemPathEnsureSeparator
- ******************************************************************/
-
void osl_systemPathEnsureSeparator(/*inout*/ rtl_uString** ppustrPath)
{
OSL_PRECOND(ppustrPath && (nullptr != *ppustrPath),
@@ -58,10 +46,6 @@ void osl_systemPathEnsureSeparator(/*inout*/ rtl_uString** ppustrPath)
"osl_systemPathEnsureSeparator: Post condition failed");
}
-/*******************************************************************
- osl_systemPathRemoveSeparator
- ******************************************************************/
-
void SAL_CALL osl_systemPathRemoveSeparator(/*inout*/ rtl_uString** ppustrPath)
{
rtl::OUString path(*ppustrPath);
@@ -78,10 +62,6 @@ void SAL_CALL osl_systemPathRemoveSeparator(/*inout*/ rtl_uString** ppustrPath)
}
}
-/*******************************************************************
- osl_is_logical_drive_pattern
- ******************************************************************/
-
// is [A-Za-z]:[/|\]\0
const sal_Char* const LDP = ":";
const sal_Char* const LDP_WITH_BACKSLASH = ":\\";