]> gitweb.michael.orlitzky.com - dead/htsn-import.git/commitdiff
Remove unused dbimport_generic function.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 22 Jan 2014 04:20:43 +0000 (23:20 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 22 Jan 2014 04:20:43 +0000 (23:20 -0500)
src/TSN/DbImport.hs

index 62cc8a10032eac904742f48d312454001b731209..c584a9a0a88847dd75bcaaea812b331f9c02012a 100644 (file)
 module TSN.DbImport (
   DbImport(..),
   ImportResult(..),
-  dbimport_generic,
   run_dbmigrate )
 where
 
 -- System imports
 import Control.Monad.IO.Class ( MonadIO )
-import Database.Groundhog (
-  runMigration )
+import Database.Groundhog ( runMigration )
 import Database.Groundhog.Core ( Migration, PersistBackend )
 import Network.Services.TSN.Report ( report_info )
 
@@ -60,15 +58,6 @@ class DbImport a where
   dbmigrate :: (MonadIO m, PersistBackend m) => a -> m ()
 
 
--- | The simplest possible implementation of 'dbimport', for types
---   which happen to be members of the 'XmlImport' typeclass.
---
-dbimport_generic :: (XmlImport a, MonadIO m, PersistBackend m)
-                 => a
-                 -> m ImportResult
-dbimport_generic x = insert_xml x >> return ImportSucceeded
-
-
 -- | A migration runner that will use our normal info reporting
 --   mechanism.
 --