diff options
author | Leo K <crowlkats@toaxl.com> | 2021-10-05 22:38:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 22:38:27 +0200 |
commit | 77a00ce1fb4ae2523e22b9b84ae09a0200502e38 (patch) | |
tree | 0027a2ff3dbff1e2b0c3afa7ce0f0e54805c7d62 /core/error.rs | |
parent | d67e85850688117e116bbf7054e80f30fe07afe6 (diff) |
chore: various op cleanup (#12329)
Diffstat (limited to 'core/error.rs')
-rw-r--r-- | core/error.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/error.rs b/core/error.rs index 087b27c41..be97a90fb 100644 --- a/core/error.rs +++ b/core/error.rs @@ -67,10 +67,6 @@ pub fn resource_unavailable() -> AnyError { ) } -pub fn null_opbuf() -> AnyError { - type_error("expected non-null op buffer arg") -} - /// A simple error type that lets the creator specify both the error message and /// the error class name. This type is private; externally it only ever appears /// wrapped in an `AnyError`. To retrieve the error class name from a wrapped |