diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-23 16:10:03 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-24 15:21:32 -0700 |
commit | cb2c8d8ea634ad102a3ec442e25f364a96cc25cf (patch) | |
tree | f0deccddbfd9fdf90a22145a2aae3e8c683d80a5 /rust/src/api_server.rs | |
parent | b27f2317899f1d0fa2e02ade3bd9b3c396ae0685 (diff) | |
download | fatcat-cb2c8d8ea634ad102a3ec442e25f364a96cc25cf.tar.gz fatcat-cb2c8d8ea634ad102a3ec442e25f364a96cc25cf.zip |
squelch unused variable nit
Diffstat (limited to 'rust/src/api_server.rs')
-rw-r--r-- | rust/src/api_server.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/api_server.rs b/rust/src/api_server.rs index 2a744525..679f2ad8 100644 --- a/rust/src/api_server.rs +++ b/rust/src/api_server.rs @@ -627,7 +627,7 @@ impl Api for Server { fn editgroup_post( &self, body: models::Editgroup, - context: &Context, + _context: &Context, ) -> Box<Future<Item = EditgroupPostResponse, Error = ApiError> + Send> { let conn = self.db_pool.get().expect("db_pool error"); |