We can't actually retrieve() from a UUID, as we cannot implicitely create a task from a UUID

This commit is contained in:
Matthias Beyer 2016-07-15 15:18:33 +02:00
parent f3639d34eb
commit 1ec11749f2

View file

@ -74,11 +74,6 @@ impl<'a> Task<'a> {
unimplemented!()
}
/// Retrieve a task from an UUID.
pub fn retrieve_from_uuid(store: &'a Store, uuid: Uuid) -> Result<Task<'a>> {
unimplemented!()
}
/// Call `Task::update_from_imports_with()` function with `Task::copy_information()`
pub fn update_from_imports<R: BufRead>(store: &'a Store, mut r: R) -> Result<(Task<'a>,
Task<'a>)> {