Remove unnecessary conditional definition of FS_WATCH_LATENCY (#26967)

This was added in #8343 to make it only visible for tests. #9189 then
made it visible regardless of `test-support`, so the definitions became
identical.

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-03-17 22:10:16 -06:00 committed by GitHub
parent b4ef3791bb
commit 1139904ef5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -76,9 +76,6 @@ use util::{
};
pub use worktree_settings::WorktreeSettings;
#[cfg(feature = "test-support")]
pub const FS_WATCH_LATENCY: Duration = Duration::from_millis(100);
#[cfg(not(feature = "test-support"))]
pub const FS_WATCH_LATENCY: Duration = Duration::from_millis(100);
/// A set of local or remote files that are being opened as part of a project.