mirror of
https://github.com/martinvonz/jj.git
synced 2025-02-06 11:34:54 +00:00
revset: remove stale comment about regex pattern
This commit is contained in:
parent
9314df9e38
commit
206acadd49
1 changed files with 0 additions and 2 deletions
|
@ -1163,8 +1163,6 @@ fn build_predicate_fn(
|
||||||
}
|
}
|
||||||
RevsetFilterPredicate::Author(pattern) => {
|
RevsetFilterPredicate::Author(pattern) => {
|
||||||
let pattern = pattern.clone();
|
let pattern = pattern.clone();
|
||||||
// TODO: Make these functions that take a needle to search for accept some
|
|
||||||
// syntax for specifying whether it's a regex.
|
|
||||||
box_pure_predicate_fn(move |index, pos| {
|
box_pure_predicate_fn(move |index, pos| {
|
||||||
let entry = index.entry_by_pos(pos);
|
let entry = index.entry_by_pos(pos);
|
||||||
let commit = store.get_commit(&entry.commit_id())?;
|
let commit = store.get_commit(&entry.commit_id())?;
|
||||||
|
|
Loading…
Reference in a new issue