Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
fix unused_braces warning
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskrgr committed Apr 14, 2020
1 parent 6e14983 commit 3144d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rls/src/actions/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub trait DiagnosticsNotifier: Send {
fn new_progress_params(title: String) -> ProgressParams {
// Counter to generate unique IDs for each chain-of-progress notification.
lazy_static! {
static ref PROGRESS_ID_COUNTER: AtomicUsize = { AtomicUsize::new(0) };
static ref PROGRESS_ID_COUNTER: AtomicUsize = AtomicUsize::new(0);
}

ProgressParams {
Expand Down

0 comments on commit 3144d6b

Please sign in to comment.