aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Haddock/ModuleTree.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Haddock/ModuleTree.hs b/src/Haddock/ModuleTree.hs
index d6054b66..62918ec6 100644
--- a/src/Haddock/ModuleTree.hs
+++ b/src/Haddock/ModuleTree.hs
@@ -16,11 +16,7 @@ import Haddock.Types ( HsDoc )
import GHC ( Name )
import Module ( Module, moduleNameString, moduleName, modulePackageId )
-#if __GLASGOW_HASKELL__ >= 609
import Module (packageIdString)
-#else
-import PackageConfig (packageIdString)
-#endif
data ModuleTree = Node String Bool (Maybe String) (Maybe (HsDoc Name)) [ModuleTree]