Docx reader: remove unused docxWarnings

This commit is contained in:
Alexander Krotov 2018-03-12 15:49:31 +03:00
parent 3ee45a7357
commit f7226a57af

View file

@ -122,7 +122,6 @@ data DState = DState { docxAnchorMap :: M.Map String String
, docxImmedPrevAnchor :: Maybe String
, docxMediaBag :: MediaBag
, docxDropCap :: Inlines
, docxWarnings :: [String]
-- keep track of (numId, lvl) values for
-- restarting
, docxListState :: M.Map (String, String) Integer
@ -135,7 +134,6 @@ instance Default DState where
, docxImmedPrevAnchor = Nothing
, docxMediaBag = mempty
, docxDropCap = mempty
, docxWarnings = []
, docxListState = M.empty
, docxPrevPara = mempty
}