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 2016/01/05 16:24:28 UTC

[2/5] storm git commit: [STORM-1427] delete tuple.clj

[STORM-1427] delete tuple.clj


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

Branch: refs/heads/master
Commit: 8b6c62362b7977433a4df93ea83205520965e1a4
Parents: 759e34c
Author: ablecao <ab...@tencent.com>
Authored: Wed Dec 30 17:31:22 2015 +0800
Committer: ablecao <ab...@tencent.com>
Committed: Wed Dec 30 17:31:22 2015 +0800

----------------------------------------------------------------------
 storm-core/src/clj/backtype/storm/tuple.clj | 24 ------------------------
 1 file changed, 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/8b6c6236/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
deleted file mode 100644
index f45d249..0000000
--- a/storm-core/src/clj/backtype/storm/tuple.clj
+++ /dev/null
@@ -1,24 +0,0 @@
-;; Licensed to the Apache Software Foundation (ASF) under one
-;; or more contributor license agreements.  See the NOTICE file
-;; distributed with this work for additional information
-;; regarding copyright ownership.  The ASF licenses this file
-;; to you under the Apache License, Version 2.0 (the
-;; "License"); you may not use this file except in compliance
-;; with the License.  You may obtain a copy of the License at
-;;
-;; http://www.apache.org/licenses/LICENSE-2.0
-;;
-;; Unless required by applicable law or agreed to in writing, software
-;; distributed under the License is distributed on an "AS IS" BASIS,
-;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-;; See the License for the specific language governing permissions and
-;; limitations under the License.
-
-(ns backtype.storm.tuple
-  (:import [java.util Arrays List]))
-
-(defn list-hash-code
-  [^List alist]
-  (if (nil? alist)
-    1
-    (Arrays/deepHashCode (.toArray alist))))