Kaydet (Commit) 8c5860ae authored tarafından Noel Grandin's avatar Noel Grandin

drop unused Private from EProtocol enum

Change-Id: Ic3f64eb211e520dbafed4ef98344ab5cb0811599
üst d5c3e800
...@@ -56,7 +56,6 @@ namespace framework{ ...@@ -56,7 +56,6 @@ namespace framework{
/** well known protocols */ /** well known protocols */
enum class EProtocol enum class EProtocol
{ {
Private,
PrivateObject, PrivateObject,
PrivateStream, PrivateStream,
PrivateFactory, PrivateFactory,
...@@ -82,9 +81,6 @@ class ProtocolCheck ...@@ -82,9 +81,6 @@ class ProtocolCheck
bool bRet = false; bool bRet = false;
switch(eRequired) switch(eRequired)
{ {
case EProtocol::Private:
bRet = sURL.startsWith(SPECIALPROTOCOL_PRIVATE);
break;
case EProtocol::PrivateObject: case EProtocol::PrivateObject:
bRet = sURL.startsWith(SPECIALPROTOCOL_PRIVATE_OBJECT); bRet = sURL.startsWith(SPECIALPROTOCOL_PRIVATE_OBJECT);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment