diff --git a/tree/dataframe/inc/ROOT/RResultHandle.hxx b/tree/dataframe/inc/ROOT/RResultHandle.hxx index b801e916f8bff..21ef632489b33 100644 --- a/tree/dataframe/inc/ROOT/RResultHandle.hxx +++ b/tree/dataframe/inc/ROOT/RResultHandle.hxx @@ -113,16 +113,6 @@ public: return *static_cast(Get()); } - /// Get an RResultPtr to the encapsulated object. - /// \tparam T Type of the action result - template - R__DEPRECATED(6, 32, "Please use RResultPtr directly and only cast to RResultHandle in order to call RunGraphs.") - RResultPtr GetResultPtr() - { - CheckType(typeid(T)); - return RResultPtr(std::static_pointer_cast(fObjPtr), fLoopManager, fActionPtr); - } - /// Check whether the result has already been computed /// /// ~~~{.cpp}