You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2013/01/15 20:05:22 UTC

git commit: r/m unused SimpleTransportFactory

Updated Branches:
  refs/heads/trunk ce9efef06 -> 83c014777


r/m unused SimpleTransportFactory


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

Branch: refs/heads/trunk
Commit: 83c014777a8d4597ca9b6cfc0f3dd9c77bd39d50
Parents: ce9efef
Author: Jonathan Ellis <jb...@apache.org>
Authored: Tue Jan 15 13:05:19 2013 -0600
Committer: Jonathan Ellis <jb...@apache.org>
Committed: Tue Jan 15 13:05:19 2013 -0600

----------------------------------------------------------------------
 .../cli/transport/SimpleTransportFactory.java      |   32 ---------------
 1 files changed, 0 insertions(+), 32 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/83c01477/src/java/org/apache/cassandra/cli/transport/SimpleTransportFactory.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/cli/transport/SimpleTransportFactory.java b/src/java/org/apache/cassandra/cli/transport/SimpleTransportFactory.java
deleted file mode 100644
index 8b46646..0000000
--- a/src/java/org/apache/cassandra/cli/transport/SimpleTransportFactory.java
+++ /dev/null
@@ -1,32 +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.cli.transport;
-
-import org.apache.thrift.transport.TTransport;
-import org.apache.thrift.transport.TTransportFactory;
-
-/**
- * Almost a noop factory, getTransport() method returns back the argument
- */
-public class SimpleTransportFactory extends TTransportFactory
-{
-    public TTransport getTransport(TTransport transport)
-    {
-        return transport;
-    }
-}