Skip to content

Commit

Permalink
Remove old commented out code.
Browse files Browse the repository at this point in the history
  • Loading branch information
ximon18 committed Sep 14, 2023
1 parent 5952c90 commit 3500bc4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/targets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ mod bmp_tcp_out;
#[cfg(feature = "mqtt")]
mod mqtt;
mod null;
// mod rotoro;

// pub use rotoro::{RotoroCoder, RotoroCommand, WireMsg};
use tokio::sync::mpsc;

//------------ Target --------------------------------------------------------
Expand All @@ -46,8 +44,6 @@ pub enum Target {
#[serde(rename = "mqtt-out")]
Mqtt(mqtt::target::Mqtt),

// #[serde(rename = "rotoro-out")]
// Rotoro(rotoro::Target),
#[serde(rename = "null-out")]
Null(null::Target),
}
Expand All @@ -65,7 +61,6 @@ impl Target {
Target::BmpTcpOut(target) => target.run(component, cmd, waitpoint).await,
#[cfg(feature = "mqtt")]
Target::Mqtt(target) => target.run(component, cmd, waitpoint).await,
// Target::Rotoro(target) => target.run(component, cmd).await,
Target::Null(target) => target.run(component, cmd, waitpoint).await,
}
}
Expand Down
2 changes: 0 additions & 2 deletions src/units/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ pub enum Unit {
#[serde(rename = "filter")]
Filter(filter::unit::Filter),

// #[serde(rename = "rotoro-in")]
// Rotoro(rotoro::unit::RotoroIn),
#[serde(rename = "bmp-in")]
BmpIn(bmp_in::unit::BmpIn),

Expand Down

0 comments on commit 3500bc4

Please sign in to comment.