Functionally meaningless change to get cargo fmt to play nice in ci

This commit is contained in:
rjhallsted
2024-09-10 14:40:57 -07:00
parent 9791e2074f
commit e67f1e910e

View File

@@ -1724,7 +1724,8 @@ fn exec_like(regex_cache: Option<&mut HashMap<String, Regex>>, pattern: &str, te
}
}
} else {
construct_like_regex(pattern).is_match(text)
let re = construct_like_regex(pattern);
re.is_match(text)
}
}