diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-04 21:16:34 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-04 21:16:34 +0400 |
commit | 88ef120511caae5ed74a48a87617b43aec4b7f76 (patch) | |
tree | b3bb561ea041a7da6c7168496a2e522b00b14456 /src/System | |
parent | 7a892425de92efd88b98576e848bebc725a9bf14 (diff) |
Move layout info to Torrent module
Diffstat (limited to 'src/System')
-rw-r--r-- | src/System/Torrent/FileMap.hs | 2 | ||||
-rw-r--r-- | src/System/Torrent/Storage.hs | 2 |
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 | |||
34 | import Foreign | 34 | import Foreign |
35 | import System.IO.MMap | 35 | import System.IO.MMap |
36 | 36 | ||
37 | import Data.Torrent.Layout | 37 | import Data.Torrent |
38 | 38 | ||
39 | 39 | ||
40 | data FileEntry = FileEntry | 40 | data 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 | ||
58 | import Data.Torrent | 58 | import Data.Torrent |
59 | import Data.Torrent.Bitfield as BF | 59 | import Data.Torrent.Bitfield as BF |
60 | import Data.Torrent.Layout | 60 | import Data.Torrent |
61 | import Data.Torrent.Piece | 61 | import Data.Torrent.Piece |
62 | import System.Torrent.FileMap as FM | 62 | import System.Torrent.FileMap as FM |
63 | 63 | ||