remove copyright comment from remaining files

This commit is contained in:
Dustin Carlino 2019-01-20 13:37:58 -08:00
parent e83e87786f
commit f018158aa3
20 changed files with 3 additions and 59 deletions

View File

@ -1,23 +0,0 @@
# How to Contribute
We'd love to accept your patches and contributions to this project. There are
just a few small guidelines you need to follow.
## Contributor License Agreement
Contributions to this project must be accompanied by a Contributor License
Agreement. You (or your employer) retain the copyright to your contribution,
this simply gives us permission to use and redistribute your contributions as
part of the project. Head over to <https://cla.developers.google.com/> to see
your current agreements on file or to sign a new one.
You generally only need to submit a CLA once, so if you've already submitted one
(even if it was for a different project), you probably don't need to do it
again.
## Code reviews
All submissions, including submissions by project members, require review. We
use GitHub pull requests for this purpose. Consult
[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
information on using pull requests.

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use abstutil::{FileWithProgress, Timer};
use geom::LonLat;
use map_model::{raw_data, AreaType};

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::srtm;
use dimensioned::si;
use geom::{HashablePt2D, LonLat};

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use byteorder::{BigEndian, ReadBytesExt};
use std::fs::File;
use std::io;

View File

@ -22,6 +22,9 @@
- model U-turns
- bridges and tunnels still confusing; z-order for lanes and intersections in DrawMap, based on road metadata probably
- apply to cars/peds too; figure out statics/dynamics plumbing
- degenerate-2's should only have one crosswalk
- then make them thinner

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
#[macro_use]
mod macros;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::objects::Ctx;
use crate::plugins::{Plugin, PluginCtx};
use ezgui::ScreenPt;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::objects::{Ctx, ID};
use crate::render::{RenderOptions, Renderable};
use dimensioned::si;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::objects::ID;
use crate::render::area::DrawArea;
use crate::render::building::DrawBuilding;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::objects::{Ctx, ID};
use crate::render::{RenderOptions, Renderable, PARCEL_BOUNDARY_THICKNESS};
use ezgui::{Color, GfxCtx};

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::screen_geom::ScreenRectangle;
use crate::{text, GfxCtx, ScreenPt, Text, UserInput};
use geom::{Bounds, Pt2D};

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
mod canvas;
mod color;
mod event;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::screen_geom::ScreenRectangle;
use crate::{Canvas, Color, GfxCtx, ScreenPt};
use graphics;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use abstutil::{LogAdapter, Timer};
use log::LevelFilter;
use sim::SimFlags;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::Position;
use abstutil;
use geom::{Line, PolyLine, Pt2D};

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::{raw_data, LaneID, LaneType, Map, RoadID, TurnID};
use abstutil;
use dimensioned::si;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::{BuildingID, BusStopID, IntersectionID, RoadID};
use abstutil;
use dimensioned::si;

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::{
make, raw_data, Area, AreaID, Building, BuildingID, BusRoute, BusRouteID, BusStop, BusStopID,
ControlStopSign, ControlTrafficSignal, Intersection, IntersectionID, IntersectionType, Lane,

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
use crate::kinematics;
use crate::view::WorldView;
use crate::{AgentID, CarID, Event, PedestrianID, Tick, Time};

View File

@ -1,5 +1,3 @@
// Copyright 2018 Google LLC, licensed under http://www.apache.org/licenses/LICENSE-2.0
#[macro_use]
mod macros;