From 486647fd38bc3ace6c80fa0d8e2a48f0c128db42 Mon Sep 17 00:00:00 2001 From: Kwang Yul Seo Date: Sun, 12 Nov 2017 22:25:17 +0900 Subject: [PATCH] Remove unused method The body of Function::functionIdentifier is missing and is not used. --- libsolidity/ast/Types.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libsolidity/ast/Types.h b/libsolidity/ast/Types.h index ce29975e7..635279abe 100644 --- a/libsolidity/ast/Types.h +++ b/libsolidity/ast/Types.h @@ -707,10 +707,6 @@ public: /// Returns the function type of the constructor modified to return an object of the contract's type. FunctionTypePointer const& newExpressionType() const; - /// @returns the identifier of the function with the given name or Invalid256 if such a name does - /// not exist. - u256 functionIdentifier(std::string const& _functionName) const; - /// @returns a list of all state variables (including inherited) of the contract and their /// offsets in storage. std::vector> stateVariables() const;