You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it.isEmpty() || it.any { version -> version == packageVersion }
249
256
}
250
257
251
-
if (!matchesVersion) return@patch logger.warning("${patch.patchName} is incompatible with version $packageVersion. "+"This patch is only compatible with version "+ packages.joinToString(
252
-
";"
253
-
) { pkg ->
254
-
"${pkg.name}: ${pkg.versions.joinToString(", ")}"
255
-
})
256
-
258
+
if (!matchesVersion) return@patch logger.warning(
259
+
"${patch.patchName} is incompatible with version $packageVersion. "
260
+
+"This patch is only compatible with version "
261
+
+ packages.joinToString(";") { pkg ->
262
+
"${pkg.name}: ${pkg.versions.joinToString(", ")}"
263
+
}
264
+
)
257
265
} ?:return@patch logger.fine("${patch.patchName} is incompatible with $packageName. "
0 commit comments