summaryrefslogtreecommitdiff
path: root/src/System/Torrent
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2014-04-04 21:16:34 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2014-04-04 21:16:34 +0400
commit88ef120511caae5ed74a48a87617b43aec4b7f76 (patch)
treeb3bb561ea041a7da6c7168496a2e522b00b14456 /src/System/Torrent
parent7a892425de92efd88b98576e848bebc725a9bf14 (diff)
Move layout info to Torrent module
Diffstat (limited to 'src/System/Torrent')
-rw-r--r--src/System/Torrent/FileMap.hs2
-rw-r--r--src/System/Torrent/Storage.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/System/Torrent/FileMap.hs b/src/System/Torrent/FileMap.hs
index 80907a30..6e8d7f5a 100644
--- a/src/System/Torrent/FileMap.hs
+++ b/src/System/Torrent/FileMap.hs
@@ -34,7 +34,7 @@ import Data.Vector as V -- TODO use unboxed vector
34import Foreign 34import Foreign
35import System.IO.MMap 35import System.IO.MMap
36 36
37import Data.Torrent.Layout 37import Data.Torrent
38 38
39 39
40data FileEntry = FileEntry 40data FileEntry = FileEntry
diff --git a/src/System/Torrent/Storage.hs b/src/System/Torrent/Storage.hs
index 003a4e98..697e3def 100644
--- a/src/System/Torrent/Storage.hs
+++ b/src/System/Torrent/Storage.hs
@@ -57,7 +57,7 @@ import Data.Typeable
57 57
58import Data.Torrent 58import Data.Torrent
59import Data.Torrent.Bitfield as BF 59import Data.Torrent.Bitfield as BF
60import Data.Torrent.Layout 60import Data.Torrent
61import Data.Torrent.Piece 61import Data.Torrent.Piece
62import System.Torrent.FileMap as FM 62import System.Torrent.FileMap as FM
63 63