Skip to content

Commit

Permalink
Revert visibility of `List<TimeRange>.firstOrNullAtPosition(position:…
Browse files Browse the repository at this point in the history
… Long)`
  • Loading branch information
MGaetan89 committed Nov 20, 2024
1 parent c901870 commit 84dceb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sealed interface TimeRange {
/**
* @return the first not `null` [TimeRange] at [position].
*/
internal fun <T : TimeRange> List<T>.firstOrNullAtPosition(position: Long): T? {
fun <T : TimeRange> List<T>.firstOrNullAtPosition(position: Long): T? {
return if (position == C.TIME_UNSET) {
null
} else {
Expand Down

0 comments on commit 84dceb4

Please sign in to comment.