summaryrefslogtreecommitdiff
path: root/cli/cache
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-01-02 16:00:42 -0500
committerGitHub <noreply@github.com>2023-01-02 21:00:42 +0000
commit10e4b2e14046b74469f7310c599579a6611513fe (patch)
treef6e446cb97d1df8b7413f3bf3a9c897ff487b275 /cli/cache
parentf729576b2db2aa6ce000a598ad2e45533f686213 (diff)
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'cli/cache')
-rw-r--r--cli/cache/check.rs2
-rw-r--r--cli/cache/common.rs2
-rw-r--r--cli/cache/deno_dir.rs2
-rw-r--r--cli/cache/disk_cache.rs2
-rw-r--r--cli/cache/emit.rs2
-rw-r--r--cli/cache/http_cache.rs2
-rw-r--r--cli/cache/incremental.rs2
-rw-r--r--cli/cache/mod.rs2
-rw-r--r--cli/cache/node.rs2
9 files changed, 9 insertions, 9 deletions
diff --git a/cli/cache/check.rs b/cli/cache/check.rs
index 51adea9a1..2d9acdf51 100644
--- a/cli/cache/check.rs
+++ b/cli/cache/check.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::path::Path;
diff --git a/cli/cache/common.rs b/cli/cache/common.rs
index 94fe383a5..33623bb79 100644
--- a/cli/cache/common.rs
+++ b/cli/cache/common.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::hash::Hasher;
diff --git a/cli/cache/deno_dir.rs b/cli/cache/deno_dir.rs
index 217658c15..e802aaacb 100644
--- a/cli/cache/deno_dir.rs
+++ b/cli/cache/deno_dir.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use super::DiskCache;
diff --git a/cli/cache/disk_cache.rs b/cli/cache/disk_cache.rs
index 894b96d2a..b97850204 100644
--- a/cli/cache/disk_cache.rs
+++ b/cli/cache/disk_cache.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use super::http_cache::url_to_filename;
use super::CACHE_PERM;
diff --git a/cli/cache/emit.rs b/cli/cache/emit.rs
index 8595627f8..21f382c55 100644
--- a/cli/cache/emit.rs
+++ b/cli/cache/emit.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::path::PathBuf;
diff --git a/cli/cache/http_cache.rs b/cli/cache/http_cache.rs
index f4cf3ef11..4be3166c9 100644
--- a/cli/cache/http_cache.rs
+++ b/cli/cache/http_cache.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This module is meant to eventually implement HTTP cache
//! as defined in RFC 7234 (<https://tools.ietf.org/html/rfc7234>).
//! Currently it's a very simplified version to fulfill Deno needs
diff --git a/cli/cache/incremental.rs b/cli/cache/incremental.rs
index b5c8180c3..2e838e85a 100644
--- a/cli/cache/incremental.rs
+++ b/cli/cache/incremental.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::collections::HashMap;
use std::path::Path;
diff --git a/cli/cache/mod.rs b/cli/cache/mod.rs
index b0d79400a..68bf1e4c6 100644
--- a/cli/cache/mod.rs
+++ b/cli/cache/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::errors::get_error_class_name;
use crate::file_fetcher::FileFetcher;
diff --git a/cli/cache/node.rs b/cli/cache/node.rs
index d84a25c34..cc93f36e1 100644
--- a/cli/cache/node.rs
+++ b/cli/cache/node.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::path::Path;