Skip to content

Commit 6792d35

Browse files
author
ntwigg
committed
More deprecation warning fixes.
1 parent 7c817a0 commit 6792d35

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@
7878

7979
# Changelog
8080
## [Unreleased]
81+
### Fixed
82+
- More spotless deprecation warnings.
8183

8284
## [9.0.1] - 2025-06-23
8385
### Fixed

src/main/resources/spotless/freshmark.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import com.diffplug.gradle.spotless.FreshMarkExtension
66

77
Action<FreshMarkExtension> freshmarkSetup = {
88
it.target '*.md'
9-
it.indentWithSpaces(2)
9+
it.leadingTabsToSpaces(2)
1010
it.trimTrailingWhitespace()
1111
it.endWithNewline()
1212
}

src/main/resources/spotless/kotlin-dense.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spotless {
1313
clearSteps() // play nicely with java.gradle
1414
target '*.gradle', 'buildSrc/*.gradle'
1515
greclipse()
16-
indentWithSpaces(2)
16+
leadingTabsToSpaces(2)
1717
}
1818
}
1919
if (plugins.hasPlugin('org.jetbrains.kotlin.jvm') || plugins.hasPlugin('org.jetbrains.kotlin.multiplatform')) {

0 commit comments

Comments
 (0)