You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ka...@apache.org on 2015/07/23 01:39:46 UTC

[3/7] storm git commit: remove unneeded type hint

remove unneeded type hint


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

Branch: refs/heads/master
Commit: 70cdda253e2f744a4f106400da5e4646b2230b1b
Parents: 1b581ef
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Wed Jul 22 12:17:14 2015 -0500
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Wed Jul 22 12:17:14 2015 -0500

----------------------------------------------------------------------
 storm-core/src/clj/backtype/storm/tuple.clj | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/70cdda25/storm-core/src/clj/backtype/storm/tuple.clj
----------------------------------------------------------------------
diff --git a/storm-core/src/clj/backtype/storm/tuple.clj b/storm-core/src/clj/backtype/storm/tuple.clj
index 790a823..f45d249 100644
--- a/storm-core/src/clj/backtype/storm/tuple.clj
+++ b/storm-core/src/clj/backtype/storm/tuple.clj
@@ -21,5 +21,4 @@
   [^List alist]
   (if (nil? alist)
     1
-    (let [^"[Ljava.lang.Object;" array (.toArray alist)] ;; Object[]
-      (Arrays/deepHashCode array))))
+    (Arrays/deepHashCode (.toArray alist))))