mirror of
https://github.com/servo/servo.git
synced 2025-07-17 20:33:40 +01:00
Silent warnings in filemanager_thread.rs
This commit is contained in:
parent
5317a716b1
commit
3ad41897f5
1 changed files with 4 additions and 4 deletions
|
@ -48,14 +48,14 @@ impl UIProvider for TFDProvider {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(any(target_os = "macos", target_os = "linux")))]
|
#[cfg(not(any(target_os = "macos", target_os = "linux")))]
|
||||||
fn open_file_dialog(&self, path: &str,
|
fn open_file_dialog(&self, _path: &str,
|
||||||
filter: Option<(&[&str], &str)>) -> Option<String> {
|
_filter: Option<(&[&str], &str)>) -> Option<String> {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(any(target_os = "macos", target_os = "linux")))]
|
#[cfg(not(any(target_os = "macos", target_os = "linux")))]
|
||||||
fn open_file_dialog_multi(&self, path: &str,
|
fn open_file_dialog_multi(&self, _path: &str,
|
||||||
filter: Option<(&[&str], &str)>) -> Option<Vec<String>> {
|
_filter: Option<(&[&str], &str)>) -> Option<Vec<String>> {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue