1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-07 11:00:47 +00:00

chore: fix clippy warnings in gradle module (#4736)

This commit is contained in:
David Knaack 2022-12-18 14:18:37 +01:00 committed by GitHub
parent 0abf4b937e
commit 14de3b34c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ fn get_wrapper_properties_file(context: &Context, recursive: bool) -> Option<Str
.is_match()
{
properties = utils::read_file(
&context
context
.current_dir
.join("gradle/wrapper/gradle-wrapper.properties"),
)
@ -98,7 +98,7 @@ fn get_wrapper_properties_file(context: &Context, recursive: bool) -> Option<Str
if recursive && properties.is_none() {
for dir in context.current_dir.ancestors().skip(1) {
properties =
utils::read_file(&dir.join("gradle/wrapper/gradle-wrapper.properties")).ok();
utils::read_file(dir.join("gradle/wrapper/gradle-wrapper.properties")).ok();
if properties.is_some() {
break;
}