summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-12-10 16:47:42 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-12-10 16:47:42 +0100
commit57a595b521a43da2c61c44fd6257477a1a141eb8 (patch)
treebd4f453d8cf163724443e7b081a7d1386f69ceab
parentcecb6a4f0ffc28143ac9d437048484c83a37d277 (diff)
Remove example new() impls
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--lib/src/reactor/account.rs2
-rw-r--r--lib/src/reactor/device.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/src/reactor/account.rs b/lib/src/reactor/account.rs
index c6be1ce..59913b5 100644
--- a/lib/src/reactor/account.rs
+++ b/lib/src/reactor/account.rs
@@ -14,6 +14,6 @@ pub struct AccountReactor(GossipReactor);
impl AccountReactor {
pub(super) fn new(profile: Arc<RwLock<Profile>>) -> Self {
- Self(GossipReactor::new(profile))
+ unimplemented!()
}
}
diff --git a/lib/src/reactor/device.rs b/lib/src/reactor/device.rs
index c013db6..1014ca1 100644
--- a/lib/src/reactor/device.rs
+++ b/lib/src/reactor/device.rs
@@ -14,6 +14,6 @@ pub struct DeviceReactor(GossipReactor);
impl DeviceReactor {
pub(super) fn new(profile: Arc<RwLock<Profile>>) -> Self {
- Self(GossipReactor::new(profile))
+ unimplemented!()
}
}