diff --git a/actix-utils/CHANGES.md b/actix-utils/CHANGES.md index 9ae7f456..7c9ddd17 100644 --- a/actix-utils/CHANGES.md +++ b/actix-utils/CHANGES.md @@ -4,8 +4,7 @@ * Upgrade `tokio-util` to `0.3`. * Remove unsound custom Cell and use `std::cell::RefCell` instead, as well as `actix-service`. -* Provide correctly spelled `LocalWaker::is_registered` method and deprecate the replaced. -* Alias `framed` module as `dispatcher`. +* Rename method to correctly spelled `LocalWaker::is_registered`. ## [1.0.6] - 2020-01-08 diff --git a/actix-utils/src/lib.rs b/actix-utils/src/lib.rs index b9d245fa..7fde1f59 100644 --- a/actix-utils/src/lib.rs +++ b/actix-utils/src/lib.rs @@ -16,5 +16,3 @@ pub mod stream; pub mod task; pub mod time; pub mod timeout; - -pub use dispatcher as framed; diff --git a/actix-utils/src/task.rs b/actix-utils/src/task.rs index dd961ad9..dca386b8 100644 --- a/actix-utils/src/task.rs +++ b/actix-utils/src/task.rs @@ -34,15 +34,6 @@ impl LocalWaker { } } - #[deprecated( - note = "Use correctly spelled `is_registered` method. Removal scheduled for v2.0." - )] - #[inline] - /// Check if waker has been registered. - pub fn is_registed(&self) -> bool { - self.is_registered() - } - #[inline] /// Check if waker has been registered. pub fn is_registered(&self) -> bool {