1
0
mirror of https://github.com/tensorflow/haskell.git synced 2024-06-02 11:03:34 +02:00

Removing redundant comments

This commit is contained in:
helq 2017-05-28 22:18:17 -05:00
parent b8c1f07332
commit 097b5ece51

View File

@ -68,8 +68,8 @@ httpDownload url outFile = do
(URI.parseURI url)
(_, rsp)
<- Browser.browse $ do
Browser.setAllowRedirects True -- handle HTTP redirects
Browser.setCheckForProxy True -- detect proxy if setted
Browser.setAllowRedirects True
Browser.setCheckForProxy True
Browser.request $ HTTP.defaultGETRequest_ uri
case HTTP.rspCode rsp of
(2, 0, 0) -> B.writeFile outFile $ HTTP.rspBody rsp