From 87fe0b826a0fa93504ffaa524929520d96b25bfd Mon Sep 17 00:00:00 2001 From: ts0yu <120932697+ts0yu@users.noreply.github.com> Date: Fri, 9 Feb 2024 16:31:30 +0000 Subject: [PATCH] nit: remove `PhantomData` (#868) --- arbiter-engine/src/machine.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/arbiter-engine/src/machine.rs b/arbiter-engine/src/machine.rs index 0358e661..d00e476d 100644 --- a/arbiter-engine/src/machine.rs +++ b/arbiter-engine/src/machine.rs @@ -172,8 +172,6 @@ where /// The [`State::Processing`] stage will attempt a decode of the [`String`]s /// into the event type ``. event_stream: Option>, - - phantom: std::marker::PhantomData, } impl Debug for Engine @@ -200,7 +198,6 @@ where behavior: Some(behavior), state: State::Uninitialized, event_stream: None, - phantom: std::marker::PhantomData, } } }