aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs b/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs
index f721d2b4..72a28e7d 100644
--- a/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs
+++ b/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs
@@ -13,11 +13,10 @@ pub struct WindowsPipes {
file_handles: IndexMap<i64, PhpResource>,
lock_handles: IndexMap<i64, PhpResource>,
read_bytes: IndexMap<i64, i64>,
- have_read_support: bool,
}
impl WindowsPipes {
- pub fn new(_input: PhpMixed, _have_read_support: bool) -> Self {
+ pub fn new(_input: PhpMixed) -> Self {
// Windows-only path: never constructed on POSIX (DIRECTORY_SEPARATOR is "/").
todo!()
}
@@ -42,10 +41,6 @@ impl PipesInterface for WindowsPipes {
todo!()
}
- fn have_read_support(&self) -> bool {
- self.have_read_support
- }
-
fn are_open(&self) -> bool {
!self.inner.pipes.is_empty() && !self.file_handles.is_empty()
}