mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Move '&&' to the end of the previous line.
Following https://github.com/servo/servo/issues/10692 this is just a formating change to satisfy a new tidy requirement of not having '&&' at the beginning of a line.
This commit is contained in:
parent
01b111c43e
commit
924d804583
11 changed files with 29 additions and 29 deletions
|
@ -274,9 +274,9 @@ fn find_native_libs(args: &Args) -> HashMap<String, PathBuf> {
|
|||
(Some(file_name), Some(extension)) => {
|
||||
let file_name = file_name.to_str().unwrap();
|
||||
|
||||
if file_name.starts_with("lib")
|
||||
&& extension == "so"
|
||||
&& args.shared_libraries.contains(file_name) {
|
||||
if file_name.starts_with("lib") &&
|
||||
extension == "so" &&
|
||||
args.shared_libraries.contains(file_name) {
|
||||
println!("Adding the file {:?}", file_name);
|
||||
native_shared_libs.insert(file_name.to_string(), path.to_path_buf().clone());
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue