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