File tree 3 files changed +6
-8
lines changed
log4k/src/jvmTest/kotlin/saschpe/log4k
3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Log.error("Oops!")
40
40
Log .assert (" Something went wrong!" , throwable)
41
41
```
42
42
43
- or , if you prefer:
43
+ Or , if you prefer:
44
44
45
45
``` kotlin
46
46
Log .verbose { " FYI" }
@@ -170,8 +170,8 @@ val httpClient = HttpClient(CIO) {
170
170
171
171
## Users
172
172
173
- - [ Alpha+ Player - Unofficial player for Soma FM] ( https://play.google.com/store/apps/details?id=saschpe.alphaplus )
174
- - [ GameOn - Get games on sale] ( https://play.google.com/store/apps/details?id=saschpe.gameon )
173
+ - [ Alpha+ Player — Unofficial player for Soma FM] ( https://play.google.com/store/apps/details?id=saschpe.alphaplus )
174
+ - [ GameOn — Get games on sale] ( https://play.google.com/store/apps/details?id=saschpe.gameon )
175
175
176
176
## License
177
177
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ spotless {
10
10
}
11
11
kotlin {
12
12
target(" **/*.kt" )
13
- ktlint(" 1.2.1 " ).setEditorConfigPath(" .editorconfig" )
13
+ ktlint(" 1.3.0 " ).setEditorConfigPath(" .editorconfig" )
14
14
}
15
15
kotlinGradle {
16
- ktlint(" 1.2.1 " ).setEditorConfigPath(" .editorconfig" )
16
+ ktlint(" 1.3.0 " ).setEditorConfigPath(" .editorconfig" )
17
17
}
18
18
}
19
19
Original file line number Diff line number Diff line change @@ -9,6 +9,4 @@ internal actual fun deleteRecursively(path: String) {
9
9
File (path).deleteRecursively()
10
10
}
11
11
12
- internal actual fun filesInFolder (path : String ): Int {
13
- return File (path).listFiles()?.size ? : 0
14
- }
12
+ internal actual fun filesInFolder (path : String ): Int = File (path).listFiles()?.size ? : 0
You can’t perform that action at this time.
0 commit comments