mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Prefix unused arguments with underscore to prevent warnings
This commit is contained in:
parent
775ff3b623
commit
7fb2bbed00
2 changed files with 2 additions and 2 deletions
|
@ -359,7 +359,7 @@ impl HostTrait for HostCallbacks {
|
|||
None
|
||||
}
|
||||
|
||||
fn set_clipboard_contents(&self, contents: String) {}
|
||||
fn set_clipboard_contents(&self, _contents: String) {}
|
||||
}
|
||||
|
||||
pub struct ServoInstance {
|
||||
|
|
|
@ -462,7 +462,7 @@ impl HostTrait for HostCallbacks {
|
|||
None
|
||||
}
|
||||
|
||||
fn set_clipboard_contents(&self, contents: String) {}
|
||||
fn set_clipboard_contents(&self, _contents: String) {}
|
||||
}
|
||||
|
||||
fn initialize_android_glue(env: &JNIEnv, activity: JObject) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue