Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gradle.starter to v0.68.0 #160

Merged
merged 2 commits into from
Dec 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
gradle-starter = "0.67.0"
gradle-starter = "0.68.0"
gradle-doctor = "0.9.1"
maven-junit = "5.10.1"
maven-assertj = "3.24.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ internal object OsInfo {
private const val PPC = "ppc"
private const val PPC64 = "ppc64"

@Suppress("ktlint:standard:discouraged-comment-location")
@Suppress("ktlint:standard:value-argument-comment")
private val archMapping = mapOf(
// x86 mappings
X86 to X86,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ internal class WebPWriter(originatingProvider: ImageWriterSpi?) : ImageWriter(or
}
}

private fun hasTranslucency(aRi: RenderedImage): Boolean {
return aRi.colorModel.hasAlpha()
}
private fun hasTranslucency(aRi: RenderedImage): Boolean = aRi.colorModel.hasAlpha()

private fun getShift(aMask: Int): Int {
var shift = 0
Expand Down
Loading