aboutsummaryrefslogtreecommitdiffstats
path: root/src/builder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/builder.rs')
-rw-r--r--src/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/builder.rs b/src/builder.rs
index d4d9364..ca9deb5 100644
--- a/src/builder.rs
+++ b/src/builder.rs
@@ -11,7 +11,7 @@ pub struct Builder<T> {
impl<T: Iterator<Item = Result<Event, Error>>> Builder<T> {
pub fn new(stream: T) -> Builder<T> {
Builder {
- stream: stream,
+ stream,
token: None,
}
}