summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-08-19 12:52:41 +0200
committerJustus Winter <justus@sequoia-pgp.org>2021-08-26 12:59:55 +0200
commite54c8a135d141fd6bfa84fa9b0aa45d5aeb22c34 (patch)
treec8663e37131225876045de300becf4e75a48046c /ipc
parenta69291515c237a55d6c1e8a01341351ee65a3847 (diff)
ipc: Remove unused error type.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/src/core.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/ipc/src/core.rs b/ipc/src/core.rs
index cb9abf2c..978d60fd 100644
--- a/ipc/src/core.rs
+++ b/ipc/src/core.rs
@@ -19,7 +19,6 @@
#![warn(missing_docs)]
-use std::io;
use std::path::{Path, PathBuf};
/// A `Context` for Sequoia.
@@ -238,14 +237,6 @@ impl Config {
/// Result type for Sequoia.
pub type Result<T> = ::std::result::Result<T, anyhow::Error>;
-#[derive(thiserror::Error, Debug)]
-/// Errors for Sequoia.
-pub enum Error {
- /// An `io::Error` occurred.
- #[error("{0}")]
- IoError(#[from] io::Error),
-}
-
/* IPC policy. */
/// IPC policy for Sequoia.