summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-16 10:30:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-16 12:42:04 +0200
commit8c5860aeb47c5ba49e06a2af961a2448debe2b50 (patch)
tree4051b6783662db71066c59d9781e48d719b47cb4 /framework
parentd5c3e8004b2a3df1c0f624639e7dd3a650b868ac (diff)
drop unused Private from EProtocol enum
Change-Id: Ic3f64eb211e520dbafed4ef98344ab5cb0811599
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/protocols.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/framework/inc/protocols.h b/framework/inc/protocols.h
index 4e7f1cb9d0c0..3496b75da3fb 100644
--- a/framework/inc/protocols.h
+++ b/framework/inc/protocols.h
@@ -56,7 +56,6 @@ namespace framework{
/** well known protocols */
enum class EProtocol
{
- Private,
PrivateObject,
PrivateStream,
PrivateFactory,
@@ -82,9 +81,6 @@ class ProtocolCheck
bool bRet = false;
switch(eRequired)
{
- case EProtocol::Private:
- bRet = sURL.startsWith(SPECIALPROTOCOL_PRIVATE);
- break;
case EProtocol::PrivateObject:
bRet = sURL.startsWith(SPECIALPROTOCOL_PRIVATE_OBJECT);
break;