diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-01-02 16:00:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-02 21:00:42 +0000 |
| commit | 10e4b2e14046b74469f7310c599579a6611513fe (patch) | |
| tree | f6e446cb97d1df8b7413f3bf3a9c897ff487b275 /cli/util | |
| parent | f729576b2db2aa6ce000a598ad2e45533f686213 (diff) | |
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'cli/util')
| -rw-r--r-- | cli/util/checksum.rs | 2 | ||||
| -rw-r--r-- | cli/util/diff.rs | 2 | ||||
| -rw-r--r-- | cli/util/display.rs | 2 | ||||
| -rw-r--r-- | cli/util/draw_thread.rs | 2 | ||||
| -rw-r--r-- | cli/util/file_watcher.rs | 2 | ||||
| -rw-r--r-- | cli/util/fs.rs | 2 | ||||
| -rw-r--r-- | cli/util/logger.rs | 2 | ||||
| -rw-r--r-- | cli/util/mod.rs | 2 | ||||
| -rw-r--r-- | cli/util/progress_bar/mod.rs | 2 | ||||
| -rw-r--r-- | cli/util/progress_bar/renderer.rs | 2 | ||||
| -rw-r--r-- | cli/util/text_encoding.rs | 2 | ||||
| -rw-r--r-- | cli/util/unix.rs | 2 | ||||
| -rw-r--r-- | cli/util/windows.rs | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/cli/util/checksum.rs b/cli/util/checksum.rs index c0e41356d..73eec19d2 100644 --- a/cli/util/checksum.rs +++ b/cli/util/checksum.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 ring::digest::Context; use ring::digest::SHA256; diff --git a/cli/util/diff.rs b/cli/util/diff.rs index 048464162..3dbe8a6ff 100644 --- a/cli/util/diff.rs +++ b/cli/util/diff.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::colors; use dissimilar::{diff as difference, Chunk}; diff --git a/cli/util/display.rs b/cli/util/display.rs index 16b301866..ee3d2f2d6 100644 --- a/cli/util/display.rs +++ b/cli/util/display.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 deno_core::error::AnyError; use deno_core::serde_json; diff --git a/cli/util/draw_thread.rs b/cli/util/draw_thread.rs index 49c45312c..028b20d00 100644 --- a/cli/util/draw_thread.rs +++ b/cli/util/draw_thread.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 console_static_text::ConsoleStaticText; use deno_core::parking_lot::Mutex; diff --git a/cli/util/file_watcher.rs b/cli/util/file_watcher.rs index b85df3bd6..741cb5a04 100644 --- a/cli/util/file_watcher.rs +++ b/cli/util/file_watcher.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::colors; use crate::util::fs::canonicalize_path; diff --git a/cli/util/fs.rs b/cli/util/fs.rs index cb8a4d369..d541b9ba4 100644 --- a/cli/util/fs.rs +++ b/cli/util/fs.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 deno_core::anyhow::Context; use deno_core::error::AnyError; diff --git a/cli/util/logger.rs b/cli/util/logger.rs index caa027c04..910dbb020 100644 --- a/cli/util/logger.rs +++ b/cli/util/logger.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::io::Write; diff --git a/cli/util/mod.rs b/cli/util/mod.rs index a7a72f3b4..d0b500e31 100644 --- a/cli/util/mod.rs +++ b/cli/util/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. // Note: Only add code in this folder that has no application specific logic pub mod checksum; diff --git a/cli/util/progress_bar/mod.rs b/cli/util/progress_bar/mod.rs index a20ac43c9..004b48b2f 100644 --- a/cli/util/progress_bar/mod.rs +++ b/cli/util/progress_bar/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 std::sync::atomic::AtomicU64; use std::sync::atomic::Ordering; diff --git a/cli/util/progress_bar/renderer.rs b/cli/util/progress_bar/renderer.rs index d8fa1769d..41a27f3aa 100644 --- a/cli/util/progress_bar/renderer.rs +++ b/cli/util/progress_bar/renderer.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::time::Duration; diff --git a/cli/util/text_encoding.rs b/cli/util/text_encoding.rs index c16a1289d..bb7d442e9 100644 --- a/cli/util/text_encoding.rs +++ b/cli/util/text_encoding.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 encoding_rs::*; use std::borrow::Cow; diff --git a/cli/util/unix.rs b/cli/util/unix.rs index f282f6cfe..fd0c94ea6 100644 --- a/cli/util/unix.rs +++ b/cli/util/unix.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. /// Raise soft file descriptor limit to hard file descriptor limit. /// This is the difference between `ulimit -n` and `ulimit -n -H`. diff --git a/cli/util/windows.rs b/cli/util/windows.rs index 0801ff2f5..a8b57114d 100644 --- a/cli/util/windows.rs +++ b/cli/util/windows.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. /// Ensures that stdin, stdout, and stderr are open and have valid HANDLEs /// associated with them. There are many places where a `std::fs::File` is |
