summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Regueiro <alexreg@me.com>2019-02-04 14:56:01 +0100
committerAlexander Regueiro <alexreg@me.com>2019-02-16 02:08:42 +0000
commit8ea26dc2dff7195308109189aa043d036b561da8 (patch)
treee00973de83428ff3a7662dbc7e6d48bf566539a4
parentded5704f82c351217e83553587daec4345d0c0d6 (diff)
downloadrust-installer-8ea26dc2dff7195308109189aa043d036b561da8.tar.gz
Removed copyright notices.
-rw-r--r--src/combiner.rs10
-rw-r--r--src/generator.rs10
-rw-r--r--src/lib.rs10
-rw-r--r--src/remove_dir_all.rs10
-rw-r--r--src/scripter.rs10
-rw-r--r--src/tarballer.rs10
-rw-r--r--src/util.rs10
7 files changed, 0 insertions, 70 deletions
diff --git a/src/combiner.rs b/src/combiner.rs
index 222e62c..faab1c4 100644
--- a/src/combiner.rs
+++ b/src/combiner.rs
@@ -1,13 +1,3 @@
-// Copyright 2017 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 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
use std::io::{Read, Write};
use std::path::Path;
use flate2::read::GzDecoder;
diff --git a/src/generator.rs b/src/generator.rs
index 90d647e..e39a7ad 100644
--- a/src/generator.rs
+++ b/src/generator.rs
@@ -1,13 +1,3 @@
-// Copyright 2017 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 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
use std::io::Write;
use std::path::Path;
diff --git a/src/lib.rs b/src/lib.rs
index af302f1..a45d87c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,13 +1,3 @@
-// Copyright 2017 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 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
#[macro_use]
extern crate error_chain;
diff --git a/src/remove_dir_all.rs b/src/remove_dir_all.rs
index e67079b..61f64b0 100644
--- a/src/remove_dir_all.rs
+++ b/src/remove_dir_all.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 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
#![allow(non_snake_case)]
use std::path::Path;
diff --git a/src/scripter.rs b/src/scripter.rs
index 3b11efa..3991604 100644
--- a/src/scripter.rs
+++ b/src/scripter.rs
@@ -1,13 +1,3 @@
-// Copyright 2017 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 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
use std::io::Write;
use crate::errors::*;
diff --git a/src/tarballer.rs b/src/tarballer.rs
index 03c4729..ded46da 100644
--- a/src/tarballer.rs
+++ b/src/tarballer.rs
@@ -1,13 +1,3 @@
-// Copyright 2017 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 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
use std::fs::{read_link, symlink_metadata};
use std::io::{self, empty, Write, BufWriter};
use std::path::Path;
diff --git a/src/util.rs b/src/util.rs
index 1678973..c7f8436 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -1,13 +1,3 @@
-// Copyright 2017 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 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
use std::fs;
use std::path::Path;