From 4f7db09a5367170c2b06d6067e840c841e15eed6 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 23 May 2018 18:58:05 -0700 Subject: clean up unused macro etc warnings --- rust/src/api_server.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rust/src/api_server.rs') diff --git a/rust/src/api_server.rs b/rust/src/api_server.rs index 0e7bf4bc..3b052a6c 100644 --- a/rust/src/api_server.rs +++ b/rust/src/api_server.rs @@ -491,7 +491,7 @@ impl Api for Server { fn creator_post( &self, body: models::CreatorEntity, - context: &Context, + _context: &Context, ) -> Box + Send> { //let editgroup_id: i64 = body.editgroup.expect("need editgroup_id") as i64; // TODO: or find/create @@ -616,7 +616,7 @@ impl Api for Server { let conn = self.db_pool.get().expect("db_pool error"); let work_id = uuid::Uuid::parse_str(&body.work_id).expect("invalid UUID"); - let container_id: Option = match body.container_id { + let _container_id: Option = match body.container_id { Some(id) => Some(uuid::Uuid::parse_str(&id).expect("invalid UUID")), None => None, }; -- cgit v1.2.3