Zap unused lifetime

This commit is contained in:
Tangent 128 2018-04-05 19:59:39 -04:00
parent 409e6eb029
commit 6eca0b923d
1 changed files with 1 additions and 1 deletions

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>;