mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-15 00:44:33 +00:00
cleanup: fix some things reported by clippy 1.63
This commit is contained in:
parent
5f0cb71177
commit
21f5bf8b15
6 changed files with 9 additions and 14 deletions
|
@ -179,7 +179,7 @@ pub fn materialize_conflict(
|
||||||
}
|
}
|
||||||
let min_diff_index = diffs
|
let min_diff_index = diffs
|
||||||
.iter()
|
.iter()
|
||||||
.position_min_by_key(|diff| diff_size(*diff))
|
.position_min_by_key(|diff| diff_size(diff))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
output.write_all(CONFLICT_MINUS_LINE)?;
|
output.write_all(CONFLICT_MINUS_LINE)?;
|
||||||
output.write_all(CONFLICT_PLUS_LINE)?;
|
output.write_all(CONFLICT_PLUS_LINE)?;
|
||||||
|
|
|
@ -992,12 +992,7 @@ impl<'revset, 'repo> Iterator for FilterRevsetIterator<'revset, 'repo> {
|
||||||
type Item = IndexEntry<'repo>;
|
type Item = IndexEntry<'repo>;
|
||||||
|
|
||||||
fn next(&mut self) -> Option<Self::Item> {
|
fn next(&mut self) -> Option<Self::Item> {
|
||||||
for entry in &mut self.iter {
|
self.iter.find(self.predicate)
|
||||||
if (self.predicate)(&entry) {
|
|
||||||
return Some(entry);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
None
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -836,7 +836,7 @@ impl TreeState {
|
||||||
panic!("unexpected tree entry in diff at {:?}", path);
|
panic!("unexpected tree entry in diff at {:?}", path);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
self.file_states.insert(path.clone(), file_state);
|
self.file_states.insert(path, file_state);
|
||||||
stats.added_files += 1;
|
stats.added_files += 1;
|
||||||
}
|
}
|
||||||
Diff::Modified(
|
Diff::Modified(
|
||||||
|
@ -875,7 +875,7 @@ impl TreeState {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
self.file_states.insert(path.clone(), file_state);
|
self.file_states.insert(path, file_state);
|
||||||
stats.updated_files += 1;
|
stats.updated_files += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,13 +27,13 @@ use crate::repo::{ReadonlyRepo, RepoLoader};
|
||||||
use crate::settings::UserSettings;
|
use crate::settings::UserSettings;
|
||||||
use crate::working_copy::WorkingCopy;
|
use crate::working_copy::WorkingCopy;
|
||||||
|
|
||||||
#[derive(Error, Debug, PartialEq)]
|
#[derive(Error, Debug, PartialEq, Eq)]
|
||||||
pub enum WorkspaceInitError {
|
pub enum WorkspaceInitError {
|
||||||
#[error("The destination repo ({0}) already exists")]
|
#[error("The destination repo ({0}) already exists")]
|
||||||
DestinationExists(PathBuf),
|
DestinationExists(PathBuf),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Error, Debug, PartialEq)]
|
#[derive(Error, Debug, PartialEq, Eq)]
|
||||||
pub enum WorkspaceLoadError {
|
pub enum WorkspaceLoadError {
|
||||||
#[error("The repo appears to no longer be at {0}")]
|
#[error("The repo appears to no longer be at {0}")]
|
||||||
RepoDoesNotExist(PathBuf),
|
RepoDoesNotExist(PathBuf),
|
||||||
|
|
|
@ -59,7 +59,7 @@ fn test_same_type(use_git: bool) {
|
||||||
if contents != "_" {
|
if contents != "_" {
|
||||||
testutils::write_normal_file(
|
testutils::write_normal_file(
|
||||||
&mut tree_builder,
|
&mut tree_builder,
|
||||||
&RepoPath::from_internal_string(*path),
|
&RepoPath::from_internal_string(path),
|
||||||
contents,
|
contents,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -536,10 +536,10 @@ impl WorkspaceCommandHelper {
|
||||||
))),
|
))),
|
||||||
Some(commit) => {
|
Some(commit) => {
|
||||||
if iter.next().is_some() {
|
if iter.next().is_some() {
|
||||||
return Err(CommandError::UserError(format!(
|
Err(CommandError::UserError(format!(
|
||||||
"Revset \"{}\" resolved to more than one revision",
|
"Revset \"{}\" resolved to more than one revision",
|
||||||
revision_str
|
revision_str
|
||||||
)));
|
)))
|
||||||
} else {
|
} else {
|
||||||
Ok(commit?)
|
Ok(commit?)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue