diff options
author | joe <joe@jerkface.net> | 2013-07-12 15:40:05 -0400 |
---|---|---|
committer | joe <joe@jerkface.net> | 2013-07-12 15:40:05 -0400 |
commit | 77f1978d8f73d4b5292c90283ec22ddffab7b077 (patch) | |
tree | 17977bdd205f226d8a6609c051ad85607fcdcc36 /Presence/XMPPTypes.hs | |
parent | 1e922a7f1b366a28487db05da28d3adece35822a (diff) |
Removed redundant imports
Diffstat (limited to 'Presence/XMPPTypes.hs')
-rw-r--r-- | Presence/XMPPTypes.hs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Presence/XMPPTypes.hs b/Presence/XMPPTypes.hs index 4507f5bf..4802002c 100644 --- a/Presence/XMPPTypes.hs +++ b/Presence/XMPPTypes.hs | |||
@@ -3,9 +3,7 @@ | |||
3 | module XMPPTypes where | 3 | module XMPPTypes where |
4 | 4 | ||
5 | import Network.Socket | 5 | import Network.Socket |
6 | ( Socket | 6 | ( Family(..) |
7 | , Family(..) | ||
8 | , SockAddr(..) | ||
9 | , getAddrInfo | 7 | , getAddrInfo |
10 | , addrCanonName | 8 | , addrCanonName |
11 | , addrAddress | 9 | , addrAddress |
@@ -18,9 +16,11 @@ import Network.BSD | |||
18 | , hostName | 16 | , hostName |
19 | , hostAliases | 17 | , hostAliases |
20 | ) | 18 | ) |
21 | import System.IO (Handle) | ||
22 | import Control.Concurrent.STM (TChan) | 19 | import Control.Concurrent.STM (TChan) |
23 | import qualified Data.ByteString.Char8 as S (ByteString,pack,putStr,putStrLn,append) | 20 | import qualified Data.ByteString.Char8 as S |
21 | ( ByteString | ||
22 | , pack | ||
23 | ) | ||
24 | import Data.ByteString.Lazy.Char8 as L | 24 | import Data.ByteString.Lazy.Char8 as L |
25 | ( ByteString | 25 | ( ByteString |
26 | , unpack | 26 | , unpack |
@@ -37,8 +37,7 @@ import Control.DeepSeq | |||
37 | import ByteStringOperators | 37 | import ByteStringOperators |
38 | import SocketLike | 38 | import SocketLike |
39 | import GetHostByAddr | 39 | import GetHostByAddr |
40 | import Data.Maybe (listToMaybe,catMaybes) | 40 | import Data.Maybe (listToMaybe) |
41 | import Control.Monad.STM | ||
42 | 41 | ||
43 | class JabberClientSession session where | 42 | class JabberClientSession session where |
44 | data XMPPClass session | 43 | data XMPPClass session |