Skip to content

Commit 76579a2

Browse files
committed
fix spotless deprecations
Signed-off-by: Jade Turner <spacey-sooty@proton.me>
1 parent 93b88cd commit 76579a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ spotless {
6565
}
6666
toggleOffOn()
6767
googleJavaFormat()
68-
indentWithTabs(2)
69-
indentWithSpaces(4)
68+
leadingSpacesToTabs(2)
69+
leadingTabsToSpaces(4)
7070
removeUnusedImports()
7171
trimTrailingWhitespace()
7272
endWithNewline()
@@ -77,7 +77,7 @@ spotless {
7777
exclude '**/build/**', '**/build-*/**', "**/cmake_build/**"
7878
}
7979
greclipse()
80-
indentWithSpaces(4)
80+
leadingTabsToSpaces(4)
8181
trimTrailingWhitespace()
8282
endWithNewline()
8383
}
@@ -87,7 +87,7 @@ spotless {
8787
exclude '**/build/**', '**/build-*/**', '**/node_modules/**', "**/cmake_build/**"
8888
}
8989
trimTrailingWhitespace()
90-
indentWithSpaces(2)
90+
leadingTabsToSpaces(2)
9191
endWithNewline()
9292
}
9393
}

0 commit comments

Comments
 (0)