You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2015/08/24 15:51:54 UTC

[09/50] [abbrv] storm git commit: STORM-166: removing unnecessary TODO.

STORM-166: removing unnecessary TODO.


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/a75c72cf
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/a75c72cf
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/a75c72cf

Branch: refs/heads/master
Commit: a75c72cfc75a150dc3e1a7c1b1b0b6471a4f99ab
Parents: a92a1e9
Author: Parth Brahmbhatt <br...@gmail.com>
Authored: Fri Dec 19 13:59:41 2014 -0800
Committer: Parth Brahmbhatt <br...@gmail.com>
Committed: Fri Dec 19 13:59:41 2014 -0800

----------------------------------------------------------------------
 storm-core/src/jvm/backtype/storm/utils/Utils.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/a75c72cf/storm-core/src/jvm/backtype/storm/utils/Utils.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/backtype/storm/utils/Utils.java b/storm-core/src/jvm/backtype/storm/utils/Utils.java
index 1c4c567..8c8fc1b 100644
--- a/storm-core/src/jvm/backtype/storm/utils/Utils.java
+++ b/storm-core/src/jvm/backtype/storm/utils/Utils.java
@@ -261,7 +261,6 @@ public class Utils {
     }
 
     public static void downloadFromHost(Map conf, String file, String localFile, String host, int port) throws IOException, TException, AuthorizationException {
-        //TODO : instead of null as last arg we probably need some real timeout, check what is the default and if its ok to reuse.
         NimbusClient client = new NimbusClient (conf, host, port, null);
         download(client, file, localFile);
     }