Zap unused lifetime

This commit is contained in:
Tangent 128 2018-04-05 19:59:39 -04:00
parent 409e6eb029
commit 6eca0b923d

View file

@ -93,7 +93,7 @@ pub struct WebmChunker<S> {
state: ChunkerState
}
impl<'a, S: EbmlEventSource> Stream for WebmChunker<S>
impl<S: EbmlEventSource> Stream for WebmChunker<S>
{
type Item = Chunk;
type Error = ChunkingError<S::Error>;