diff --git a/simgear/hla/HLADataElement.hxx b/simgear/hla/HLADataElement.hxx index 0cb14e61..079c5cec 100644 --- a/simgear/hla/HLADataElement.hxx +++ b/simgear/hla/HLADataElement.hxx @@ -147,15 +147,12 @@ public: }; typedef std::list Path; typedef std::pair StringPathPair; - typedef StringPathPair AttributePathPair; // deprecated typedef std::pair IndexPathPair; static std::string toString(const Path& path); static std::string toString(const StringPathPair& path) { return path.first + toString(path.second); } static StringPathPair toStringPathPair(const std::string& s); - static AttributePathPair toAttributePathPair(const std::string& s) // deprecated - { return toStringPathPair(s); } static Path toPath(const std::string& s) { return toStringPathPair(s).second; }