From ff3c62b4db82e9b3692bcfcf0c0981e05d511285 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sat, 1 Aug 2015 14:09:08 -0400 Subject: [PATCH] A cosmetic adjustment --- src/connection.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/connection.rs b/src/connection.rs index 1ee702a..7239557 100644 --- a/src/connection.rs +++ b/src/connection.rs @@ -21,11 +21,7 @@ impl<'l> Connection<'l> { ffi::SQLITE_OPEN_CREATE | ffi::SQLITE_OPEN_READWRITE, 0 as *const _)); } - Ok(Connection { - raw: raw, - busy_callback: None, - phantom: PhantomData, - }) + Ok(Connection { raw: raw, busy_callback: None, phantom: PhantomData }) } /// Execute a query without processing the resulting rows if any.