From edca6f1717552affef82925bf8956d120529de19 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 5 Apr 2025 10:51:51 +0100 Subject: [PATCH] Move ordered operation --- backend/reconcile/src/operation_transformation.rs | 1 + .../src/{utils => operation_transformation}/ordered_operation.rs | 0 backend/reconcile/src/utils.rs | 1 - 3 files changed, 1 insertion(+), 1 deletion(-) rename backend/reconcile/src/{utils => operation_transformation}/ordered_operation.rs (100%) diff --git a/backend/reconcile/src/operation_transformation.rs b/backend/reconcile/src/operation_transformation.rs index 8c95d397..afff26c7 100644 --- a/backend/reconcile/src/operation_transformation.rs +++ b/backend/reconcile/src/operation_transformation.rs @@ -2,6 +2,7 @@ mod cursor; mod edited_text; mod merge_context; mod operation; +mod ordered_operation; pub use cursor::{CursorPosition, TextWithCursors}; pub use edited_text::EditedText; diff --git a/backend/reconcile/src/utils/ordered_operation.rs b/backend/reconcile/src/operation_transformation/ordered_operation.rs similarity index 100% rename from backend/reconcile/src/utils/ordered_operation.rs rename to backend/reconcile/src/operation_transformation/ordered_operation.rs diff --git a/backend/reconcile/src/utils.rs b/backend/reconcile/src/utils.rs index 8461b5ff..105719bd 100644 --- a/backend/reconcile/src/utils.rs +++ b/backend/reconcile/src/utils.rs @@ -2,6 +2,5 @@ pub mod common_prefix_len; pub mod common_suffix_len; pub mod find_longest_prefix_contained_within; pub mod merge_iters; -pub mod ordered_operation; pub mod side; pub mod string_builder;