Fix a few warnings

This commit is contained in:
Bat
2018-04-29 19:06:10 +01:00
parent 80472506ca
commit dd9e845e66
4 changed files with 4 additions and 8 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ impl Blog {
Outbox::new(self.compute_outbox(conn), self.get_activities(conn))
}
fn get_activities(&self, conn: &PgConnection) -> Vec<Activity> {
fn get_activities(&self, _conn: &PgConnection) -> Vec<Activity> {
vec![]
}
}