Skip to content

Commit 08460b8

Browse files
committed
Remove an unused parameter
1 parent 290d572 commit 08460b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ impl<'a> CopyInStatement<'a> {
17401740
/// set in memory.
17411741
///
17421742
/// Returns the number of rows copied.
1743-
pub fn execute<'b, I, J>(&self, mut rows: I) -> Result<usize>
1743+
pub fn execute<I, J>(&self, mut rows: I) -> Result<usize>
17441744
where I: Iterator<Item=J>, J: StreamIterator {
17451745
let mut conn = self.conn.conn.borrow_mut();
17461746

0 commit comments

Comments
 (0)