Remove unnecessary return statement

This commit is contained in:
Mika Attila
2015-11-03 09:17:20 +01:00
parent 8daef60a03
commit c698097ffd

View File

@@ -175,7 +175,7 @@ impl<'a> Notification<'a> {
glib::g_error_free(err);
return result;
}
return Ok(());
Ok(())
}
}
}