Radish alpha
r
rad:z2UcCU1LgMshWvXj6hXSDDrwB8q8M
Radicle Job Collaborative Object
Radicle
Git
fix: drop unused type parameter C from Jobs::get_mut
Lars Wirzenius committed 10 months ago
commit 6fef4ae5309426d663129ef0d4a90753d4b366ef
parent 524dfdb
1 file changed +1 -1
modified src/lib.rs
@@ -609,7 +609,7 @@ where
    R: ReadRepository + SignRepository + cob::Store<Namespace = NodeId>,
{
    /// Get a [`JobMut`], given its [`JobId`] identifier.
-
    pub fn get_mut<'g, C>(&'g mut self, id: &JobId) -> Result<JobMut<'a, 'g, R>, store::Error> {
+
    pub fn get_mut<'g>(&'g mut self, id: &JobId) -> Result<JobMut<'a, 'g, R>, store::Error> {
        let job = self
            .raw
            .get(id.as_object_id())?