summaryrefslogtreecommitdiff
path: root/src/binder
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-12-17 08:55:53 -0800
committerGitHub <noreply@github.com>2018-12-17 08:55:53 -0800
commitad561d0dee8345a1a1b6105b44be527970c0b27f (patch)
tree55ce7baf6c6801244b35a07566f77bf179ce6a8e /src/binder
parent0f4a23c8d0442fbf87c4ea81920b97a81bb33da0 (diff)
downloadcoreclr-ad561d0dee8345a1a1b6105b44be527970c0b27f.tar.gz
coreclr-ad561d0dee8345a1a1b6105b44be527970c0b27f.tar.bz2
coreclr-ad561d0dee8345a1a1b6105b44be527970c0b27f.zip
Delete dead code (#21562)
- Delete clix support from PAL. "clix" was launcher in the Rotor days - like "dotnet" today. - Delete URL parsing from PALRT
Diffstat (limited to 'src/binder')
-rw-r--r--src/binder/inc/utils.hpp2
-rw-r--r--src/binder/utils.cpp5
2 files changed, 0 insertions, 7 deletions
diff --git a/src/binder/inc/utils.hpp b/src/binder/inc/utils.hpp
index 8b65fd8c12..6b19f26b77 100644
--- a/src/binder/inc/utils.hpp
+++ b/src/binder/inc/utils.hpp
@@ -34,8 +34,6 @@ namespace BINDER_SPACE
HRESULT FileOrDirectoryExists(PathString &path);
HRESULT FileOrDirectoryExistsLog(PathString &path);
- BOOL IsURL(SString &urlOrPath);
-
void MutateUrlToPath(SString &urlOrPath);
void MutatePathToUrl(SString &pathOrUrl);
diff --git a/src/binder/utils.cpp b/src/binder/utils.cpp
index bd821260e3..85a5ba27e7 100644
--- a/src/binder/utils.cpp
+++ b/src/binder/utils.cpp
@@ -146,11 +146,6 @@ namespace BINDER_SPACE
return hr;
}
- BOOL IsURL(SString &urlOrPath)
- {
- return PathIsURLW(urlOrPath);
- }
-
void MutateUrlToPath(SString &urlOrPath)
{
BINDER_LOG_ENTER(W("Utils::MutateUrlToPath"));