Skip to content

Commit

Permalink
Fix visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiya-kume committed Sep 16, 2023
1 parent 4ba7ae4 commit c0c4f4d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import okio.BufferedSource
import okio.buffer
import okio.source

class DefaultOssLicenseDataSource @Inject constructor(
public class DefaultOssLicenseDataSource @Inject constructor(
private val context: Context,
) : OssLicenseDataSource {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.onStart

class DefaultOssLicenseRepository @Inject constructor(
public class DefaultOssLicenseRepository @Inject constructor(
private val ossLicenseDataSource: OssLicenseDataSource,
) : OssLicenseRepository {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package io.github.droidkaigi.confsched2023.data.osslicense

import io.github.droidkaigi.confsched2023.model.OssLicenseGroup

interface OssLicenseDataSource {
suspend fun license(): List<OssLicenseGroup>
public interface OssLicenseDataSource {
public suspend fun license(): List<OssLicenseGroup>
}

0 comments on commit c0c4f4d

Please sign in to comment.