summaryrefslogtreecommitdiffstats
path: root/src/executor.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2020-10-17 21:10:59 +0200
committerLibravatar GitHub <noreply@github.com>2020-10-17 21:10:59 +0200
commitbefeb3222501c03d412bf8e3f0041afa0d135081 (patch)
tree03f39ceb0bec80f0a7ed9be058761776ba03d6d1 /src/executor.rs
parent5d0f7ba3fcaa96dc0509c8e9edc587411c21f3db (diff)
parentae5a2502d676f6065315b19132430243575e934b (diff)
downloadiced-befeb3222501c03d412bf8e3f0041afa0d135081.tar.gz
iced-befeb3222501c03d412bf8e3f0041afa0d135081.tar.bz2
iced-befeb3222501c03d412bf8e3f0041afa0d135081.zip
Merge pull request #569 from hecrj/improvement/hide-null-executor
Remove `executor::Null` from the root public API
Diffstat (limited to 'src/executor.rs')
-rw-r--r--src/executor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/executor.rs b/src/executor.rs
index 59d59a5a..ea6ab14a 100644
--- a/src/executor.rs
+++ b/src/executor.rs
@@ -1,5 +1,5 @@
//! Choose your preferred executor to power your application.
-pub use crate::runtime::{executor::Null, Executor};
+pub use crate::runtime::Executor;
pub use platform::Default;