Control.Exception.Extensible -> Control.Exception

According to its documentation[1], this module simply re-exports
Control.Exception on recent GHC versions.  As we only support recent
versions, this import is unnecessary.

[1] http://hackage.haskell.org/package/extensible-exceptions-0.1.1.4/docs/Control-Exception-Extensible.html
This commit is contained in:
slotThe
2021-01-12 11:04:50 +01:00
parent 0a44981d0f
commit 77b047316c
8 changed files with 7 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ module XMonad.Util.XSelection ( -- * Usage
transformPromptSelection,
transformSafePromptSelection) where
import Control.Exception.Extensible as E (catch,SomeException(..))
import Control.Exception as E (catch,SomeException(..))
import Data.Maybe (fromMaybe)
import XMonad
import XMonad.Util.Run (safeSpawn, unsafeSpawn)