Skip to content

Commit

Permalink
feat: PictureSelector IMPL 更新部分方法修饰符
Browse files Browse the repository at this point in the history
Former-commit-id: 801cdbb
Former-commit-id: 3103853
  • Loading branch information
afkT committed Jul 4, 2022
1 parent 62fe1c8 commit 4030147
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ open class LuckCompressFileEngineImpl(
* @param sources 待转换数据
* @return Uris
*/
protected fun toInputStreamList(
open protected fun toInputStreamList(
context: Context?,
sources: List<Uri>
): List<InputStreamProvider?> {
Expand All @@ -119,7 +119,7 @@ open class LuckCompressFileEngineImpl(
* @param uri Uri
* @return Uri 原始路径
*/
protected fun toUriPath(uri: Uri?): String? {
open protected fun toUriPath(uri: Uri?): String? {
return uri?.let {
val uriString = it.toString()
if (PictureMimeType.isContent(uriString)) uriString else it.path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ open class LuckRecordAudioInterceptListener(
* @param fragment Fragment
* @param requestCode 请求 code
*/
protected fun startRecordSoundAction(
open protected fun startRecordSoundAction(
fragment: Fragment,
requestCode: Int
) {
Expand Down

0 comments on commit 4030147

Please sign in to comment.