You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by sl...@apache.org on 2012/02/24 13:59:32 UTC

[5/8] git commit: Remove dead code

Remove dead code


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

Branch: refs/heads/trunk
Commit: 8ad7840b336f47cf4d6c33da3459121c98db2d48
Parents: 4dcd15f
Author: Sylvain Lebresne <sy...@datastax.com>
Authored: Fri Feb 24 12:20:49 2012 +0100
Committer: Sylvain Lebresne <sy...@datastax.com>
Committed: Fri Feb 24 12:21:51 2012 +0100

----------------------------------------------------------------------
 .../org/apache/cassandra/concurrent/Context.java   |   51 ---------------
 1 files changed, 0 insertions(+), 51 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/8ad7840b/src/java/org/apache/cassandra/concurrent/Context.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/concurrent/Context.java b/src/java/org/apache/cassandra/concurrent/Context.java
deleted file mode 100644
index d55f0ba..0000000
--- a/src/java/org/apache/cassandra/concurrent/Context.java
+++ /dev/null
@@ -1,51 +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.
- */
-
-package org.apache.cassandra.concurrent;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * Context object adding a collection of key/value pairs into ThreadLocalContext.
- */
-
-public class Context
-{
-    private Map<Object, Object> ht_;
-    
-    public Context()
-    {
-        ht_ = new HashMap<Object, Object>();
-    }
-    
-    public Object put(Object key, Object value)
-    {
-        return ht_.put(key, value);
-    }
-    
-    public Object get(Object key)
-    {
-        return ht_.get(key);
-    }
-    
-    public void remove(Object key)
-    {
-        ht_.remove(key);
-    }
-}