Removed incorrect parentheses check.
This commit is contained in:
parent
0b33ac0e7d
commit
0eb2714c9e
@ -77,8 +77,6 @@ void Description::parseSection(utils::Parser &parser)
|
||||
// m_problem = std::make_unique<Problem>(Problem::fromPDDL(parser));
|
||||
else
|
||||
throw utils::ParserException(parser.row(), parser.column(), "Unknown PDDL section \"" + sectionIdentifier + "\"");
|
||||
|
||||
parser.expect<std::string>(")");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -27,8 +27,6 @@ Domain Domain::fromPDDL(utils::Parser &parser)
|
||||
{
|
||||
parser.skipWhiteSpace();
|
||||
|
||||
std::cout << parser.currentCharacter() << std::endl;
|
||||
|
||||
if (parser.currentCharacter() == ')')
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user