Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 463b0bd

Browse files
committed
Prune copyright headers
1 parent 9a8802b commit 463b0bd

File tree

10 files changed

+0
-82
lines changed

10 files changed

+0
-82
lines changed

build.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright 2016-2017 The Rust Project Developers. See the COPYRIGHT
2-
// file at the top-level directory of this distribution and at
3-
// http://rust-lang.org/COPYRIGHT.
4-
//
5-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8-
// option. This file may not be copied, modified, or distributed
9-
// except according to those terms.
10-
111
use std::env;
122
use std::path::Path;
133

rls-analysis/benches/std_api_crate.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2017 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
#![feature(test)]
102

113
extern crate rls_analysis;

rls-analysis/src/analysis.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2017 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
use fst;
102
use std::collections::{HashMap, HashSet};
113
use std::iter;

rls-analysis/src/lib.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2016 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
#![warn(rust_2018_idioms)]
102

113
#[macro_use]

rls-analysis/src/listings/mod.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2016 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
use std::io;
102
use std::path::Path;
113
use std::time::SystemTime;

rls-analysis/src/loader.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2017 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
//! Defines an `AnalysisLoader` trait, which allows to specify directories
102
//! from which save-analysis JSON files can be read. Also supplies a
113
//! default implementation `CargoAnalysisLoader` for Cargo-emitted save-analysis

rls-analysis/src/lowering.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2016 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
//! For processing the raw save-analysis data from rustc into the rls
102
//! in-memory representation.
113

rls-analysis/src/raw.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2016 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
use data::config::Config;
102
use data::Analysis;
113
pub use data::{

rls-analysis/src/test/mod.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2016 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
use crate::loader::SearchDirectory;
102
use crate::raw::DefKind;
113
use crate::{AnalysisHost, AnalysisLoader};

rls-analysis/src/util.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2016 The RLS Project Developers.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
#[cfg(unix)]
102
pub fn get_resident() -> Option<usize> {
113
use std::fs::File;

0 commit comments

Comments
 (0)