Skip to content

Commit a024e7c

Browse files
committed
Code cleanup
1 parent 8526326 commit a024e7c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

studyplus-android-sdk/src/main/java/jp/studyplus/android/sdk/StudyplusError.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package jp.studyplus.android.sdk
22

33
sealed class StudyplusError {
4-
class IOException(val throwable: Throwable) : StudyplusError();
5-
object BadRequest : StudyplusError();
6-
object LoginRequired : StudyplusError();
7-
object ServerError : StudyplusError();
8-
object Unknown : StudyplusError();
4+
class IOException(val throwable: Throwable) : StudyplusError()
5+
object BadRequest : StudyplusError()
6+
object LoginRequired : StudyplusError()
7+
object ServerError : StudyplusError()
8+
object Unknown : StudyplusError()
99

1010
companion object {
1111
fun byCode(code: Int) = when (code) {

0 commit comments

Comments
 (0)