Skip to content

Commit 6a8f578

Browse files
committed
lint
1 parent 623abbe commit 6a8f578

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ft-coroutines-retry/src/main/kotlin/tech/figure/coroutines/retry/flow/ObjectStoreRetryFlow.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fun <T> recordStoreFlowRetry(
1717
handler: suspend (T) -> Unit,
1818
store: RetryRecordStore<T>,
1919
groupSize: Int = 40,
20-
) : FlowRetry<T> = RecordStoreFlowRetry(handler, store, groupSize)
20+
): FlowRetry<T> = RecordStoreFlowRetry(handler, store, groupSize)
2121

2222
/**
2323
* Retry a flow of objects using the backing [store].
@@ -56,4 +56,4 @@ internal open class RecordStoreFlowRetry<T>(
5656

5757
override suspend fun hasNext() =
5858
!store.isEmpty()
59-
}
59+
}

0 commit comments

Comments
 (0)