Remove duplicated if clause

This was a thinko in 760b7cf2 (found by cppcheck), it was added in 977bbd9b as
well.
This commit is contained in:
Georg Baum 2016-06-05 19:48:31 +02:00
parent b1bc328396
commit 42362cfb87

View File

@ -607,9 +607,6 @@ void InsetLayout::readArgument(Lexer & lex)
} else if (tok == "insertcotext") {
lex.next();
arg.insertcotext = lex.getBool();
} else if (tok == "insertcotext") {
lex.next();
arg.insertcotext = lex.getBool();
} else if (tok == "leftdelim") {
lex.next();
arg.ldelim = lex.getDocString();