diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-07-22 19:56:34 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-07-22 19:56:34 +1000 |
commit | 91d37dfd5186e1cd4a9a06a88078ed9ca24bbba8 (patch) | |
tree | 72e57abd0fd1560fb56d8b2feb26cf96bc892ad5 /sal | |
parent | 606b682a2ca5636b21bb934d74046eb90b79aa0f (diff) |
osl: get rid of comment cruft in w32 path_helper.cxx
Change-Id: I111c8b4e39fc9f1dd894979ff6fb5e98659182d1
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/path_helper.cxx | 20 |
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 = ":\\"; |