Skip to content

Commit

Permalink
Format sources
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed May 5, 2023
1 parent a52a6bf commit ef332a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coursier/cputil/ClassPathUtil.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object ClassPathUtil {
private implicit class CustomStringOps(private val str: String) extends AnyVal {
def endsWithIgnoreCase(suffix: String): Boolean =
str.length >= suffix.length &&
suffix.compareToIgnoreCase(str.substring(str.length - suffix.length)) == 0
suffix.compareToIgnoreCase(str.substring(str.length - suffix.length)) == 0
}

private val propertyRegex = Pattern.compile(
Expand Down

0 comments on commit ef332a4

Please sign in to comment.