mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-26 16:21:07 +00:00
Remove useless where clauses for the criteria
This commit is contained in:
@ -24,7 +24,7 @@ impl<'t> Typo<'t> {
|
||||
ctx: &'t dyn Context,
|
||||
query_tree: Option<Operation>,
|
||||
candidates: Option<RoaringBitmap>,
|
||||
) -> anyhow::Result<Self> where Self: Sized
|
||||
) -> anyhow::Result<Self>
|
||||
{
|
||||
Ok(Typo {
|
||||
ctx,
|
||||
@ -41,7 +41,7 @@ impl<'t> Typo<'t> {
|
||||
pub fn new(
|
||||
ctx: &'t dyn Context,
|
||||
parent: Box<dyn Criterion + 't>,
|
||||
) -> anyhow::Result<Self> where Self: Sized
|
||||
) -> anyhow::Result<Self>
|
||||
{
|
||||
Ok(Typo {
|
||||
ctx,
|
||||
|
Reference in New Issue
Block a user