Remove obsolete type argument

This commit is contained in:
puuuuh 2024-10-06 20:05:04 +03:00
parent 514a31331b
commit 01d7aab603
No known key found for this signature in database
GPG key ID: 171E3E1356CEE151

View file

@ -114,7 +114,7 @@ where
unsafe { std::mem::transmute(data) }
}
pub fn intern_id<'db, T: Lookup<C::Data<'db>>>(
pub fn intern_id<'db>(
&'db self,
db: &'db dyn crate::Database,
data: impl Lookup<C::Data<'db>>,
@ -123,7 +123,7 @@ where
}
/// Intern data to a unique reference.
pub fn intern<'db, T: Lookup<C::Data<'db>>>(
pub fn intern<'db>(
&'db self,
db: &'db dyn crate::Database,
data: impl Lookup<C::Data<'db>>,