You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celeborn.apache.org by ch...@apache.org on 2023/03/02 11:07:13 UTC

[incubator-celeborn] branch branch-0.2 updated: [CELEBORN-372] Remove the standard Apache License header from the top of third-party source files (#1302)

This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch branch-0.2
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git


The following commit(s) were added to refs/heads/branch-0.2 by this push:
     new dcf1e018f [CELEBORN-372] Remove the standard Apache License header from the top of third-party source files (#1302)
dcf1e018f is described below

commit dcf1e018f6352a64250c64d64e21e3eae1f8fa14
Author: Keyong Zhou <zh...@apache.org>
AuthorDate: Thu Mar 2 19:07:09 2023 +0800

    [CELEBORN-372] Remove the standard Apache License header from the top of third-party source files (#1302)
---
 .rat-excludes                                           |  1 +
 .../common/network/util/LimitedInputStream.java         | 17 -----------------
 2 files changed, 1 insertion(+), 17 deletions(-)

diff --git a/.rat-excludes b/.rat-excludes
index 6c194b628..b98575fba 100644
--- a/.rat-excludes
+++ b/.rat-excludes
@@ -34,3 +34,4 @@ assets/**
 build/apache-maven-*/**
 build/scala-*/**
 **/benchmarks/**
+LimitedInputStream.java
diff --git a/common/src/main/java/org/apache/celeborn/common/network/util/LimitedInputStream.java b/common/src/main/java/org/apache/celeborn/common/network/util/LimitedInputStream.java
index 491ecaaa0..2f0c1c24a 100644
--- a/common/src/main/java/org/apache/celeborn/common/network/util/LimitedInputStream.java
+++ b/common/src/main/java/org/apache/celeborn/common/network/util/LimitedInputStream.java
@@ -1,20 +1,3 @@
-/*
- * 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.
- */
-
 /*
  * Based on LimitedInputStream.java from Google Guava
  *