Removed duplicate check for [[ a == b + 1 ]]

This commit is contained in:
Vidar Holen 2014-02-01 20:45:44 -08:00
parent 9ae776530b
commit e8634a3c27
1 changed files with 0 additions and 1 deletions

View File

@ -329,7 +329,6 @@ readConditionContents single = do
endedWith _ _ = False
readCondAndOp = do
optional guardArithmetic
id <- getNextId
x <- try (string "&&" <|> string "-a")
when (single && x == "&&") $ addNoteFor id $ Note ErrorC 1022 "You can't use && inside [..]. Use [[..]] instead."