From: Michael Orlitzky Date: Tue, 14 Jan 2014 00:20:52 +0000 (-0500) Subject: Fixing compiler warnings by exporting stuff that shouldn't be exported (woo). X-Git-Tag: 0.0.1~62 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=83d9458cac02a97efc7bc1c3c4b1d71bf7b048a6;p=dead%2Fhtsn-import.git Fixing compiler warnings by exporting stuff that shouldn't be exported (woo). --- diff --git a/src/TSN/XML/Injuries.hs b/src/TSN/XML/Injuries.hs index a93d788..8002799 100644 --- a/src/TSN/XML/Injuries.hs +++ b/src/TSN/XML/Injuries.hs @@ -15,7 +15,9 @@ -- module TSN.XML.Injuries ( injuries_tests, - pickle_message ) + pickle_message, + -- * WARNING: these are private but exported to silence warnings + ListingConstructor(..) ) where import Data.Data ( Data ) diff --git a/src/TSN/XML/InjuriesDetail.hs b/src/TSN/XML/InjuriesDetail.hs index 3f8be8f..171b879 100644 --- a/src/TSN/XML/InjuriesDetail.hs +++ b/src/TSN/XML/InjuriesDetail.hs @@ -18,7 +18,9 @@ -- module TSN.XML.InjuriesDetail ( injuries_detail_tests, - pickle_message ) + pickle_message, + -- * WARNING: these are private but exported to silence warnings + PlayerListingConstructor(..) ) where import Data.Time ( UTCTime )