Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.

Commit 51359b2

Browse files
authored
Merge pull request #655 from bourtemb/cleanup-taco
Cleanup taco
2 parents abbf084 + 567ad16 commit 51359b2

File tree

3 files changed

+0
-17
lines changed

3 files changed

+0
-17
lines changed

cppapi/client/attr_proxy.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -412,14 +412,6 @@ void AttributeProxy::parse_name(std::string &full_name)
412412
{
413413
name_wo_prot = full_name.substr(pos + 3);
414414
}
415-
else if (protocol == TACO_PROTOCOL)
416-
{
417-
TangoSys_OMemStream desc;
418-
desc << "Taco protocol is not supported" << std::ends;
419-
ApiWrongNameExcept::throw_exception((const char*)"API_UnsupportedProtocol",
420-
desc.str(),
421-
(const char*)"AttributeProxy::parse_name()");
422-
}
423415
else
424416
{
425417
TangoSys_OMemStream desc;

cppapi/client/devapi.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ enum cb_sub_model
424424
#define CONNECTION_NOTOK 0
425425

426426
#define PROT_SEP "://"
427-
#define TACO_PROTOCOL "taco"
428427
#define TANGO_PROTOCOL "tango"
429428

430429
#define MODIFIER '#'

cppapi/client/devapi_base.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2059,14 +2059,6 @@ void DeviceProxy::parse_name(std::string &full_name)
20592059
{
20602060
name_wo_prot = full_name_low.substr(pos + 3);
20612061
}
2062-
else if (protocol == TACO_PROTOCOL)
2063-
{
2064-
TangoSys_OMemStream desc;
2065-
desc << "Taco protocol is not supported" << std::ends;
2066-
ApiWrongNameExcept::throw_exception((const char *) "API_UnsupportedProtocol",
2067-
desc.str(),
2068-
(const char *) "DeviceProxy::parse_name()");
2069-
}
20702062
else
20712063
{
20722064
TangoSys_OMemStream desc;

0 commit comments

Comments
 (0)