summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/binding.cc22
-rw-r--r--src/binding.rs3
-rw-r--r--src/deno.h3
-rw-r--r--src/file_util.cc3
-rw-r--r--src/file_util.h3
-rw-r--r--src/file_util_test.cc3
-rw-r--r--src/flatbuffer_builder.cc3
-rw-r--r--src/flatbuffer_builder.h3
-rw-r--r--src/flatbuffer_builder_test.cc3
-rw-r--r--src/from_filesystem.cc3
-rw-r--r--src/from_snapshot.cc3
-rw-r--r--src/handlers.h3
-rw-r--r--src/handlers.rs3
-rw-r--r--src/internal.h3
-rw-r--r--src/mock_runtime_test.cc3
-rw-r--r--src/reply.cc3
-rw-r--r--src/reply.h3
-rw-r--r--src/snapshot_creator.cc3
-rw-r--r--src/test.cc3
19 files changed, 19 insertions, 57 deletions
diff --git a/src/binding.cc b/src/binding.cc
index 2067f1023..60325df1e 100644
--- a/src/binding.cc
+++ b/src/binding.cc
@@ -1,24 +1,4 @@
-/*
-Copyright 2018 Ryan Dahl <ry@tinyclouds.org>. All rights reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to
-deal in the Software without restriction, including without limitation the
-rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-sell copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-IN THE SOFTWARE.
-*/
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/binding.rs b/src/binding.rs
index 1e60e01d7..72e8af996 100644
--- a/src/binding.rs
+++ b/src/binding.rs
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#![allow(dead_code)]
extern crate libc;
diff --git a/src/deno.h b/src/deno.h
index ab214ab03..bb4c91f1c 100644
--- a/src/deno.h
+++ b/src/deno.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef DENO_H_
#define DENO_H_
#include <stddef.h>
diff --git a/src/file_util.cc b/src/file_util.cc
index 38e393300..17eb29e67 100644
--- a/src/file_util.cc
+++ b/src/file_util.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <inttypes.h>
#include <stdio.h>
#include <fstream>
diff --git a/src/file_util.h b/src/file_util.h
index a2abb5f68..bba512c0d 100644
--- a/src/file_util.h
+++ b/src/file_util.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef FILE_UTIL_H_
#define FILE_UTIL_H_
diff --git a/src/file_util_test.cc b/src/file_util_test.cc
index 33d635881..6d4acd1d8 100644
--- a/src/file_util_test.cc
+++ b/src/file_util_test.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "testing/gtest/include/gtest/gtest.h"
#include "file_util.h"
diff --git a/src/flatbuffer_builder.cc b/src/flatbuffer_builder.cc
index 8a7a0c649..d8f0fb336 100644
--- a/src/flatbuffer_builder.cc
+++ b/src/flatbuffer_builder.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Bert Belder <bertbelder@gmail.com>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stddef.h>
#include <stdint.h>
diff --git a/src/flatbuffer_builder.h b/src/flatbuffer_builder.h
index 1bc973afe..24e7a887a 100644
--- a/src/flatbuffer_builder.h
+++ b/src/flatbuffer_builder.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Bert Belder <bertbelder@gmail.com>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef FLATBUFFER_BUILDER_H_
#define FLATBUFFER_BUILDER_H_
diff --git a/src/flatbuffer_builder_test.cc b/src/flatbuffer_builder_test.cc
index cfa12f0a0..b0c04d118 100644
--- a/src/flatbuffer_builder_test.cc
+++ b/src/flatbuffer_builder_test.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Bert Belder <bertbelder@gmail.com>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdint.h>
diff --git a/src/from_filesystem.cc b/src/from_filesystem.cc
index 3a3de85c6..a47808b82 100644
--- a/src/from_filesystem.cc
+++ b/src/from_filesystem.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/from_snapshot.cc b/src/from_snapshot.cc
index 3aa3bac77..ac48e8a20 100644
--- a/src/from_snapshot.cc
+++ b/src/from_snapshot.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/src/handlers.h b/src/handlers.h
index a95bc7265..04aed25ef 100644
--- a/src/handlers.h
+++ b/src/handlers.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef HANDLERS_H_
#define HANDLERS_H_
diff --git a/src/handlers.rs b/src/handlers.rs
index 1566fc7e0..e8e197e60 100644
--- a/src/handlers.rs
+++ b/src/handlers.rs
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
extern crate libc;
#[macro_use]
extern crate log;
diff --git a/src/internal.h b/src/internal.h
index 914079d9a..dc28112dc 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#ifndef INTERNAL_H_
#define INTERNAL_H_
diff --git a/src/mock_runtime_test.cc b/src/mock_runtime_test.cc
index 74256fa02..971fa68f3 100644
--- a/src/mock_runtime_test.cc
+++ b/src/mock_runtime_test.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "testing/gtest/include/gtest/gtest.h"
#include "deno.h"
diff --git a/src/reply.cc b/src/reply.cc
index 7043292fd..ffb0d493a 100644
--- a/src/reply.cc
+++ b/src/reply.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// When Rust Flatbuffer support is complete this file should be ported
// to Rust and removed: https://github.com/google/flatbuffers/pull/3894
diff --git a/src/reply.h b/src/reply.h
index aa2e61f8c..4b16204da 100644
--- a/src/reply.h
+++ b/src/reply.h
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// TODO(ry) This library handles parsing and sending Flatbuffers. It's written
// in C++ because flatbuffer support for Rust is not quite there. However, once
diff --git a/src/snapshot_creator.cc b/src/snapshot_creator.cc
index 3aca7c3a8..25aef7d51 100644
--- a/src/snapshot_creator.cc
+++ b/src/snapshot_creator.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Hint: --trace_serializer is a useful debugging flag.
#include <fstream>
#include "deno.h"
diff --git a/src/test.cc b/src/test.cc
index d8b4380d7..9638dba60 100644
--- a/src/test.cc
+++ b/src/test.cc
@@ -1,5 +1,4 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
+// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "deno.h"
#include "testing/gtest/include/gtest/gtest.h"