]> gitweb.michael.orlitzky.com - list-remote-forwards.git/commitdiff
src/MxList.hs: use implicit Typeable derivation.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 24 Aug 2022 01:41:14 +0000 (21:41 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 24 Aug 2022 01:41:14 +0000 (21:41 -0400)
src/MxList.hs

index e31e7f4be8ab655dcecfbc7052948a2b7497ed62..10a9af6e7a8bbd6ba75d24d8e43e95290a242b75 100644 (file)
@@ -17,14 +17,13 @@ import qualified Data.Configurator.Types as DCT (
   convert )
 import Data.Data (Data)
 import System.Console.CmdArgs.Default (Default(..))
-import Data.Typeable (Typeable)
 
 
 -- | A (wrapper around a) list of MX hostnames.
 --
 newtype MxList =
   MxList { get_mxs :: [String] }
-    deriving (Data, Show, Typeable)
+    deriving (Data, Show)
 
 
 -- | The default (empty) list of MXes.