From 35a23172ec8466b8c1819169c7a0a414692dd310 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sun, 29 Oct 2023 11:47:05 -0700 Subject: [PATCH] backend: delete unused `Phase` enum The idea was to support phases like in hg, but that hasn't happened yet. We can add back this simple enum if we do add support for phases. --- lib/src/backend.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/src/backend.rs b/lib/src/backend.rs index 991277f18e..9639562061 100644 --- a/lib/src/backend.rs +++ b/lib/src/backend.rs @@ -101,11 +101,6 @@ id_type!(pub FileId); id_type!(pub SymlinkId); id_type!(pub ConflictId); -pub enum Phase { - Public, - Draft, -} - content_hash! { #[derive(Debug, PartialEq, Eq, Clone, PartialOrd, Ord)] pub struct MillisSinceEpoch(pub i64);