remove solidity --interface

This commit is contained in:
Dimitry
2016-08-17 12:39:10 +03:00
parent e7683f4722
commit e5e2597702
7 changed files with 1 additions and 262 deletions
-8
View File
@@ -358,11 +358,6 @@ string const& CompilerStack::interface(string const& _contractName) const
return metadata(_contractName, DocumentationType::ABIInterface);
}
string const& CompilerStack::solidityInterface(string const& _contractName) const
{
return metadata(_contractName, DocumentationType::ABISolidityInterface);
}
string const& CompilerStack::metadata(string const& _contractName, DocumentationType _type) const
{
if (!m_parseSuccessful)
@@ -383,9 +378,6 @@ string const& CompilerStack::metadata(string const& _contractName, Documentation
case DocumentationType::ABIInterface:
doc = &currentContract.interface;
break;
case DocumentationType::ABISolidityInterface:
doc = &currentContract.solidityInterface;
break;
default:
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Illegal documentation type."));
}