refactor(client): remove dead exec function

This commit is contained in:
Sean McArthur
2018-12-05 17:00:56 -08:00
parent 4b3747110a
commit 010a886516

View File

@@ -439,11 +439,6 @@ impl Builder {
}
}
pub(super) fn exec(&mut self, exec: Exec) -> &mut Builder {
self.exec = exec;
self
}
/// Provide an executor to execute background HTTP2 tasks.
pub fn executor<E>(&mut self, exec: E) -> &mut Builder
where