From cf1c50528bede08aa377fe1592fc3109e562e6b9 Mon Sep 17 00:00:00 2001 From: Lzu Tao Date: Fri, 30 Oct 2020 18:49:31 +0700 Subject: [PATCH] Remove copyright banner like rustc repo --- ci/android-sdk.sh | 9 --------- src/backtrace/dbghelp.rs | 10 ---------- src/backtrace/libunwind.rs | 10 ---------- src/symbolize/dbghelp.rs | 10 ---------- src/symbolize/libbacktrace.rs | 10 ---------- 5 files changed, 49 deletions(-) diff --git a/ci/android-sdk.sh b/ci/android-sdk.sh index aee133e3a..7fde9a97f 100755 --- a/ci/android-sdk.sh +++ b/ci/android-sdk.sh @@ -1,13 +1,4 @@ #!/usr/bin/env sh -# Copyright 2016 The Rust Project Developers. See the COPYRIGHT -# file at the top-level directory of this distribution and at -# http://rust-lang.org/COPYRIGHT. -# -# Licensed under the Apache License, Version 2.0 or the MIT license -# , at your -# option. This file may not be copied, modified, or distributed -# except according to those terms. set -ex diff --git a/src/backtrace/dbghelp.rs b/src/backtrace/dbghelp.rs index a4c3bc6a8..3704d8053 100644 --- a/src/backtrace/dbghelp.rs +++ b/src/backtrace/dbghelp.rs @@ -1,13 +1,3 @@ -// Copyright 2014 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - //! Backtrace strategy for MSVC platforms. //! //! This module contains the ability to generate a backtrace on MSVC using one diff --git a/src/backtrace/libunwind.rs b/src/backtrace/libunwind.rs index b0b5b221e..1737fdfbd 100644 --- a/src/backtrace/libunwind.rs +++ b/src/backtrace/libunwind.rs @@ -1,13 +1,3 @@ -// Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - //! Backtrace support using libunwind/gcc_s/etc APIs. //! //! This module contains the ability to unwind the stack using libunwind-style diff --git a/src/symbolize/dbghelp.rs b/src/symbolize/dbghelp.rs index e49224413..495de616d 100644 --- a/src/symbolize/dbghelp.rs +++ b/src/symbolize/dbghelp.rs @@ -1,13 +1,3 @@ -// Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - //! Symbolication strategy using `dbghelp.dll` on Windows, only used for MSVC //! //! This symbolication strategy, like with backtraces, uses dynamically loaded diff --git a/src/symbolize/libbacktrace.rs b/src/symbolize/libbacktrace.rs index d155b7dc3..8b825e3e3 100644 --- a/src/symbolize/libbacktrace.rs +++ b/src/symbolize/libbacktrace.rs @@ -1,13 +1,3 @@ -// Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - //! Symbolication strategy using the DWARF-parsing code in libbacktrace. //! //! The libbacktrace C library, typically distributed with gcc, supports not