mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-12 23:23:20 +00:00
local_working_copy: fix some clippy lints that only show up on Windows
This commit is contained in:
parent
59d3a2c866
commit
13c8f32ceb
1 changed files with 1 additions and 1 deletions
|
@ -13,6 +13,7 @@
|
|||
// limitations under the License.
|
||||
|
||||
#![allow(missing_docs)]
|
||||
#![allow(clippy::let_unit_value)]
|
||||
|
||||
use std::any::Any;
|
||||
use std::collections::HashSet;
|
||||
|
@ -109,7 +110,6 @@ impl FileState {
|
|||
let executable = {
|
||||
// Windows doesn't support executable bit.
|
||||
let _ = executable;
|
||||
()
|
||||
};
|
||||
FileState {
|
||||
file_type: FileType::Normal { executable },
|
||||
|
|
Loading…
Reference in a new issue