fix(common): remove obsolete marker trait

... and version-up right away :).
This commit is contained in:
Sebastian Thiel
2015-04-26 20:50:27 +02:00
parent 690bcdb627
commit 2a1247bae0
2 changed files with 2 additions and 3 deletions

View File

@@ -1,11 +1,10 @@
use chrono::{DateTime, UTC, TimeZone};
use std::marker::MarkerTrait;
use std::fmt;
use std::str::FromStr;
use hyper;
/// A marker trait for all Flows
pub trait Flow : MarkerTrait {
pub trait Flow {
fn type_id() -> FlowType;
}