mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 10:42:08 +00:00
client: Remove unneeded return
(#20685)
Some checks are pending
CI / Check Postgres and Protobuf migrations, mergability (push) Waiting to run
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Linux) Build Remote Server (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run
Some checks are pending
CI / Check Postgres and Protobuf migrations, mergability (push) Waiting to run
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Linux) Build Remote Server (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run
This PR removes an unneeded `return` that was introduced in #19928. Release Notes: - N/A
This commit is contained in:
parent
690a725667
commit
43999c47e1
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ impl Telemetry {
|
||||||
let state = self.state.lock();
|
let state = self.state.lock();
|
||||||
let enabled = state.settings.metrics;
|
let enabled = state.settings.metrics;
|
||||||
drop(state);
|
drop(state);
|
||||||
return enabled;
|
enabled
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_authenticated_user_info(
|
pub fn set_authenticated_user_info(
|
||||||
|
|
Loading…
Reference in a new issue