summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2019-01-22 04:03:30 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-01-21 13:03:30 -0600
commit77114fbda49382e397095d8214bd76996b0cfb57 (patch)
treeb7705caf24eae68ecec7cc311a20c5e382ef7f0a /src
parent7eb74ba0d6cb492b0710b892bb4cf1c74bf64c90 (diff)
chore: update license lines (#1557)
Diffstat (limited to 'src')
-rw-r--r--src/msg.rs1
-rw-r--r--src/permissions.rs1
-rw-r--r--src/tokio_write.rs1
-rw-r--r--src/workers.rs2
4 files changed, 4 insertions, 1 deletions
diff --git a/src/msg.rs b/src/msg.rs
index 9a146a5d3..74027d3d6 100644
--- a/src/msg.rs
+++ b/src/msg.rs
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
#![allow(unused_imports)]
#![allow(dead_code)]
#![cfg_attr(
diff --git a/src/permissions.rs b/src/permissions.rs
index 15415c347..fc14bea76 100644
--- a/src/permissions.rs
+++ b/src/permissions.rs
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use atty;
use crate::flags::DenoFlags;
diff --git a/src/tokio_write.rs b/src/tokio_write.rs
index 68e0d2261..945de375d 100644
--- a/src/tokio_write.rs
+++ b/src/tokio_write.rs
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// TODO Submit this file upstream into tokio-io/src/io/write.rs
use std::io;
use std::mem;
diff --git a/src/workers.rs b/src/workers.rs
index 0cc2225b6..279cc3cc9 100644
--- a/src/workers.rs
+++ b/src/workers.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use crate::isolate::Buf;
use crate::isolate::Isolate;
use crate::isolate::IsolateState;