From 83ca347343f5783779b908c264c9470634d3758c Mon Sep 17 00:00:00 2001 From: Niv Kaminer Date: Sat, 25 Aug 2018 00:07:00 +0300 Subject: [PATCH] remove copyright headers now that they are not madatory --- src/liballoc/pin.rs | 10 ---------- src/libcore/pin.rs | 10 ---------- 2 files changed, 20 deletions(-) diff --git a/src/liballoc/pin.rs b/src/liballoc/pin.rs index 625c42a649073..17bbc9882d976 100644 --- a/src/liballoc/pin.rs +++ b/src/liballoc/pin.rs @@ -1,13 +1,3 @@ -// Copyright 2012-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. - //! Types which pin data to its location in memory //! //! It is sometimes useful to have objects that are guaranteed to not move, diff --git a/src/libcore/pin.rs b/src/libcore/pin.rs index 65057dfdaceeb..e9001f86b3526 100644 --- a/src/libcore/pin.rs +++ b/src/libcore/pin.rs @@ -1,13 +1,3 @@ -// Copyright 2012-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. - //! Types which pin data to its location in memory //! //! See the [standard library module] for more information.