Skip to content

Commit 24209ed

Browse files
committed
Suppress for function names
1 parent f453cc1 commit 24209ed

File tree

1 file changed

+2
-0
lines changed
  • mvicore-base/src/commonMain/kotlin/com/badoo/mvicore/common/binder

1 file changed

+2
-0
lines changed

mvicore-base/src/commonMain/kotlin/com/badoo/mvicore/common/binder/Binder.kt

+2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ interface Binder : Cancellable {
1212
fun <Out, In> bind(connection: Connection<Out, In>)
1313
}
1414

15+
@Suppress("FunctionName")
1516
fun Binder(): Binder = SimpleBinder()
17+
@Suppress("FunctionName")
1618
fun Binder(lifecycle: Lifecycle): Binder = LifecycleBinder(lifecycle)
1719

1820
internal class SimpleBinder : Binder {

0 commit comments

Comments
 (0)