diff --git a/libgrive/src/drive/Resource.cc b/libgrive/src/drive/Resource.cc index acd09e7..2a36d2c 100644 --- a/libgrive/src/drive/Resource.cc +++ b/libgrive/src/drive/Resource.cc @@ -249,11 +249,6 @@ Resource* Resource::Parent() return m_parent ; } -std::string Resource::ParentHref() const -{ - return m_entry.ParentHref() ; -} - void Resource::AddChild( Resource *child ) { assert( child != 0 ) ; diff --git a/libgrive/src/drive/Resource.hh b/libgrive/src/drive/Resource.hh index 968b6f5..91a0d01 100644 --- a/libgrive/src/drive/Resource.hh +++ b/libgrive/src/drive/Resource.hh @@ -62,7 +62,6 @@ public : std::string Name() const ; std::string SelfHref() const ; std::string ResourceID() const ; - std::string ParentHref() const ; const Resource* Parent() const ; Resource* Parent() ;