diff --git a/LICENSE-APACHE b/LICENSE-APACHE index 6be59f3..c9d7204 100644 --- a/LICENSE-APACHE +++ b/LICENSE-APACHE @@ -186,7 +186,7 @@ APPENDIX: How to apply the Apache License to your work. same "printed page" as the copyright notice for easier identification within third-party archives. -Copyright 2017 fd developers +Copyright 2017-2020 fd developers Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/build.rs b/build.rs index 41270f3..ad7af7d 100644 --- a/build.rs +++ b/build.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use clap::Shell; use std::fs; use std::io::{self, Write}; diff --git a/src/app.rs b/src/app.rs index 790420a..e1de80c 100644 --- a/src/app.rs +++ b/src/app.rs @@ -1,10 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. use std::collections::HashMap; use clap::{crate_version, App, AppSettings, Arg}; diff --git a/src/exec/command.rs b/src/exec/command.rs index f6d79d0..29dd219 100644 --- a/src/exec/command.rs +++ b/src/exec/command.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use std::io; use std::io::Write; use std::process::Command; diff --git a/src/exec/input.rs b/src/exec/input.rs index b465799..83f02d7 100644 --- a/src/exec/input.rs +++ b/src/exec/input.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use std::path::MAIN_SEPARATOR; /// Removes the parent component of the path diff --git a/src/exec/job.rs b/src/exec/job.rs index c3c8254..9d9ce3a 100644 --- a/src/exec/job.rs +++ b/src/exec/job.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use super::CommandTemplate; use crate::exit_codes::{merge_exitcodes, ExitCode}; use crate::walk::WorkerResult; diff --git a/src/exec/mod.rs b/src/exec/mod.rs index 091e989..5c27491 100644 --- a/src/exec/mod.rs +++ b/src/exec/mod.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - // TODO: Possible optimization could avoid pushing characters on a buffer. mod command; mod input; diff --git a/src/exec/token.rs b/src/exec/token.rs index fe06437..0cf4df3 100644 --- a/src/exec/token.rs +++ b/src/exec/token.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use std::fmt::{self, Display, Formatter}; /// Designates what should be written to a buffer diff --git a/src/fshelper/mod.rs b/src/fshelper/mod.rs index 580bfd5..933416a 100644 --- a/src/fshelper/mod.rs +++ b/src/fshelper/mod.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use std::env::current_dir; use std::fs; use std::io; diff --git a/src/internal/mod.rs b/src/internal/mod.rs index ec7d1fa..3235f45 100644 --- a/src/internal/mod.rs +++ b/src/internal/mod.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use std::borrow::Cow; use std::ffi::{OsStr, OsString}; diff --git a/src/main.rs b/src/main.rs index c6855b7..fbf7f24 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - #[macro_use] mod internal; diff --git a/src/output.rs b/src/output.rs index 4cc4e58..a38f9f5 100644 --- a/src/output.rs +++ b/src/output.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use crate::exit_codes::ExitCode; use crate::internal::opts::FdOptions; use lscolors::{LsColors, Style}; diff --git a/src/walk.rs b/src/walk.rs index 3b677fa..faf7c4c 100644 --- a/src/walk.rs +++ b/src/walk.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use crate::exec; use crate::exit_codes::{merge_exitcodes, ExitCode}; use crate::fshelper; diff --git a/tests/testenv/mod.rs b/tests/testenv/mod.rs index fda50e4..886b095 100644 --- a/tests/testenv/mod.rs +++ b/tests/testenv/mod.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - use std; use std::env; use std::fs; diff --git a/tests/tests.rs b/tests/tests.rs index 18d24f7..bab7d23 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -1,11 +1,3 @@ -// Copyright (c) 2017 fd developers -// Licensed under the Apache License, Version 2.0 -// -// or the MIT license , -// at your option. All files in the project carrying such -// notice may not be copied, modified, or distributed except -// according to those terms. - //! Integration tests for the CLI interface of fd. mod testenv;