Removed extra whitespace.

This commit is contained in:
Nicolás Venturo 2018-09-25 14:40:39 -03:00 committed by GitHub
parent 1b8334e58b
commit f8d43a4da5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2039,7 +2039,7 @@ void TypeChecker::endVisit(NewExpression const& _newExpression)
if (!contract)
m_errorReporter.fatalTypeError(_newExpression.location(), "Identifier is not a contract.");
if (contract->contractKind() == ContractDefinition::ContractKind::Interface)
m_errorReporter.fatalTypeError(_newExpression.location(), "Cannot instantiate an interface.");
m_errorReporter.fatalTypeError(_newExpression.location(), "Cannot instantiate an interface.");
if (!contract->annotation().unimplementedFunctions.empty())
{
SecondarySourceLocation ssl;