Skip to content

Commit 6af5181

Browse files
committed
Refactor: code clean up
1 parent bf55b52 commit 6af5181

File tree

1 file changed

+1
-1
lines changed
  • core/src/main/kotlin/io/github/sungbin/gitmessengerbot/core/bot/api

1 file changed

+1
-1
lines changed

Diff for: core/src/main/kotlin/io/github/sungbin/gitmessengerbot/core/bot/api/File.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import io.github.jisungbin.gitmessengerbot.common.core.Storage
1313

1414
internal class File {
1515
fun save(path: String, content: String) = Storage.write(path, content)
16-
fun read(path: String, _null: String? = null) = Storage.read(path, _null)
16+
fun read(path: String, _null: String? = null) = Storage.read(path, _null)
1717
fun append(path: String, content: String, appendPrefix: String) =
1818
Storage.append(path, content, appendPrefix)
1919
}

0 commit comments

Comments
 (0)