From fd445ea23e6b550ae89421a38d8d4485fd24a8f8 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 24 Nov 2024 15:51:16 +0000 Subject: [PATCH] Remove error --- backend/reconcile/src/errors.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/reconcile/src/errors.rs b/backend/reconcile/src/errors.rs index bb9ffb88..0a43c8e0 100644 --- a/backend/reconcile/src/errors.rs +++ b/backend/reconcile/src/errors.rs @@ -2,9 +2,6 @@ use thiserror::Error; #[derive(Error, Debug)] pub enum SyncLibError { - #[error("Failed to shift the operation's index {0}")] - NegativeOperationIndexError(String), - #[error("Failed to apply operation because {0}")] OperationApplicationError(String), }