Radish alpha
r
Radicle Job Collaborative Object
Radicle
Git (anonymous pull)
Log in to clone via SSH
fix: drop unused type parameter C from Jobs::get_mut
✗ CI failure Lars Wirzenius committed 11 months ago
commit 6fef4ae5309426d663129ef0d4a90753d4b366ef
parent 524dfdb12a3c88cee5919aefd3456d55f8258f97
2 failed (2 total) View logs
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())?