Skip to content

Commit 3b85b9d

Browse files
christian-schillingLMG
authored andcommitted
Remove redundant braces
This was a rustc warning Change-Id: remove-braces
1 parent 41bae4b commit 3b85b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

josh-proxy/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ pub fn process_repo_update(repo_update: RepoUpdate) -> josh::JoshResult<String>
156156
None
157157
};
158158

159-
let mut change_ids = if (push_mode == PushMode::Stack || push_mode == PushMode::Split) {
159+
let mut change_ids = if push_mode == PushMode::Stack || push_mode == PushMode::Split {
160160
Some(vec![])
161161
} else {
162162
None

0 commit comments

Comments
 (0)