]> git.rkrishnan.org Git - functorrent.git/commitdiff
remove a few reduntant stuff
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Fri, 4 Sep 2015 06:38:58 +0000 (12:08 +0530)
committerRamakrishnan Muthukrishnan <ram@acano.com>
Wed, 9 Sep 2015 06:55:47 +0000 (12:25 +0530)
src/FuncTorrent/Peer.hs

index ae95f838b38215279ca3150a6002a1086caefd1a..cfefb1132e69c69c5c13845aaca358085042207a 100644 (file)
@@ -129,7 +129,7 @@ handlePeerMsgs p m peerId = do
       fileName = name (info m)
       pieceStatus = mkPieceMap numPieces pieceHash (splitNum fileLen pLen)
   createDummyFile fileName (fromIntegral fileLen)
-  (r, _) <- runStateT (msgLoop pieceStatus fileName) pstate
+  _ <- runStateT (msgLoop pieceStatus fileName) pstate
   return ()
 
 msgLoop :: PieceMap -> FilePath -> StateT PState IO ()
@@ -142,7 +142,7 @@ msgLoop pieceStatus file = do
       gets peer >>= (\p -> liftIO $ putStrLn $ "--> InterestedMsg to peer: " ++ show p)
       modify (\st -> st { meInterested = True })
       msgLoop pieceStatus file
-    PState { meInterested = True, heChoking = False } -> do
+    PState { meInterested = True, heChoking = False } ->
       case pickPiece pieceStatus of
         Nothing -> liftIO $ putStrLn "Nothing to download"
         Just workPiece -> do