From 952282d8b12c85e5e3a0427b7aaab32dff1a10ca Mon Sep 17 00:00:00 2001 From: hosted-fornet Date: Tue, 1 Oct 2024 09:50:25 -0700 Subject: [PATCH] vfs: remove now-unused const --- kinode/src/vfs.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/kinode/src/vfs.rs b/kinode/src/vfs.rs index 0764d960..f9362aff 100644 --- a/kinode/src/vfs.rs +++ b/kinode/src/vfs.rs @@ -19,9 +19,6 @@ use tokio::{ sync::Mutex, }; -// Constants for file cleanup -const MAX_OPEN_FILES: usize = 180; - /// The main VFS service function. /// /// This function sets up the VFS, handles incoming requests, and manages file operations.