You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2018/08/05 10:19:24 UTC

httpcomponents-core git commit: Removed unused interface

Repository: httpcomponents-core
Updated Branches:
  refs/heads/master 3c39a3874 -> e0041dd2c


Removed unused interface


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

Branch: refs/heads/master
Commit: e0041dd2c40726b7cc4f04bdbb9dd4b6ddb30f54
Parents: 3c39a38
Author: Oleg Kalnichevski <ol...@apache.org>
Authored: Sun Aug 5 12:19:08 2018 +0200
Committer: Oleg Kalnichevski <ol...@apache.org>
Committed: Sun Aug 5 12:19:08 2018 +0200

----------------------------------------------------------------------
 .../hc/core5/function/Transformation.java       | 39 --------------------
 1 file changed, 39 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/e0041dd2/httpcore5/src/main/java/org/apache/hc/core5/function/Transformation.java
----------------------------------------------------------------------
diff --git a/httpcore5/src/main/java/org/apache/hc/core5/function/Transformation.java b/httpcore5/src/main/java/org/apache/hc/core5/function/Transformation.java
deleted file mode 100644
index 84da663..0000000
--- a/httpcore5/src/main/java/org/apache/hc/core5/function/Transformation.java
+++ /dev/null
@@ -1,39 +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.
- * ====================================================================
- *
- * This software consists of voluntary contributions made by many
- * individuals on behalf of the Apache Software Foundation.  For more
- * information on the Apache Software Foundation, please see
- * <http://www.apache.org/>.
- *
- */
-
-package org.apache.hc.core5.function;
-
-/**
- * Abstract transformation from input to output.
- *
- * @since 5.0
- */
-public interface Transformation<I, O> {
-
-    O transform(I object);
-
-}