Skip to content

Commit 2beb691

Browse files
committed
Fix identation
1 parent d103a3e commit 2beb691

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/src/main/java/com/rootstrap/android/utils/AppExecutors.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ import java.util.concurrent.Executor
1616
* }
1717
* */
1818

19-
var ioThread: Executor = IoThreadExecutor()
20-
var mainThread: Executor = MainThreadExecutor()
19+
var ioThread: Executor = IoThreadExecutor()
20+
var mainThread: Executor = MainThreadExecutor()
2121

app/src/main/java/com/rootstrap/android/utils/Converter.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ inline fun <reified T> String.fromGson() : T = Gson().fromJson(this,T :: class.j
1515

1616
/**
1717
* Add more convert functions
18-
* */
18+
* */

app/src/main/java/com/rootstrap/android/utils/MainThreadExecutor.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ class MainThreadExecutor : Executor {
1515
override fun execute(command: Runnable) {
1616
mainThreadHandler.post(command)
1717
}
18-
}
18+
}

app/src/main/java/com/rootstrap/android/utils/SimpleCallBack.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ package com.rootstrap.android.utils
66

77
interface SimpleCallBack<T> {
88
fun callBack(param: T)
9-
}
9+
}

0 commit comments

Comments
 (0)