We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf55b52 commit 6af5181Copy full SHA for 6af5181
core/src/main/kotlin/io/github/sungbin/gitmessengerbot/core/bot/api/File.kt
@@ -13,7 +13,7 @@ import io.github.jisungbin.gitmessengerbot.common.core.Storage
13
14
internal class File {
15
fun save(path: String, content: String) = Storage.write(path, content)
16
- fun read(path: String, _null: String? = null) = Storage.read(path, _null)
+ fun read(path: String, _null: String? = null) = Storage.read(path, _null)
17
fun append(path: String, content: String, appendPrefix: String) =
18
Storage.append(path, content, appendPrefix)
19
}
0 commit comments