Removed legacy get_name (#14751)

This commit is contained in:
Ilya Churaev 2022-12-21 14:25:51 +04:00 committed by GitHub
parent 7856045497
commit 425a3a1974
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,11 +51,6 @@ public:
Tensor(const Tensor&) = delete;
Tensor& operator=(const Tensor&) = delete;
OPENVINO_DEPRECATED("get_name() is deprecated! Please use get_names() instead.")
const std::string& get_name() const {
// TODO: remove after clean up of private plugins
return m_legacy_name;
}
std::string get_any_name() const;
const std::unordered_set<std::string>& get_names() const;
void set_names(const std::unordered_set<std::string>& names);