From 8dd9d5f5239f9f842f7096a540f866bd4f10b72c Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 10 Jul 2023 17:45:09 -0400 Subject: refactor(lsp): move config file related code to config.rs (#19790) Will make #19788 easier. --- cli/tsc/mod.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'cli/tsc/mod.rs') diff --git a/cli/tsc/mod.rs b/cli/tsc/mod.rs index a4d6640f7..52883a0b3 100644 --- a/cli/tsc/mod.rs +++ b/cli/tsc/mod.rs @@ -242,10 +242,11 @@ fn get_maybe_hash( } fn get_hash(source: &str, hash_data: u64) -> String { - let mut hasher = FastInsecureHasher::new(); - hasher.write_str(source); - hasher.write_u64(hash_data); - hasher.finish().to_string() + FastInsecureHasher::new() + .write_str(source) + .write_u64(hash_data) + .finish() + .to_string() } /// Hash the URL so it can be sent to `tsc` in a supportable way -- cgit v1.2.3