summaryrefslogtreecommitdiff
path: root/core/ops_builtin.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/ops_builtin.rs')
-rw-r--r--core/ops_builtin.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/core/ops_builtin.rs b/core/ops_builtin.rs
index a742a77b1..92f77f954 100644
--- a/core/ops_builtin.rs
+++ b/core/ops_builtin.rs
@@ -39,19 +39,6 @@ pub(crate) fn init_builtins() -> Extension {
.build()
}
-#[op]
-pub fn void_op_sync(_: &mut OpState) -> Result<(), Error> {
- Ok(())
-}
-
-pub async fn void_op_async(
- _state: Rc<RefCell<OpState>>,
- _: (),
- _: (),
-) -> Result<(), Error> {
- Ok(())
-}
-
/// Return map of resources with id as key
/// and string representation as value.
#[op]