Skip to content

Commit be30eb5

Browse files
committed
ScalaFmt
1 parent 7e3720a commit be30eb5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

modules/core/src/main/scala/org/scalasteward/core/repoconfig/UpdatesConfig.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,12 +174,11 @@ object UpdatesConfig {
174174
private[this] def satisfyUpdatePattern(
175175
targetUpdatePattern: UpdatePattern,
176176
comparedUpdatePatternsByArtifact: Map[Option[String], List[UpdatePattern]]
177-
): Boolean = {
177+
): Boolean =
178178
comparedUpdatePatternsByArtifact.get(targetUpdatePattern.artifactId).exists { matchedVersions =>
179179
// For simplicity I'm using direct equals here between versions. Feel free to make it more advanced
180180
matchedVersions.exists(up => up.version.isEmpty || up.version === targetUpdatePattern.version)
181181
}
182-
}
183182

184183
// Strategy: union
185184
private[repoconfig] def mergeIgnore(

0 commit comments

Comments
 (0)