Skip to content

Commit 4030147

Browse files
committed
feat: PictureSelector IMPL 更新部分方法修饰符
Former-commit-id: 801cdbb Former-commit-id: 3103853
1 parent 62fe1c8 commit 4030147

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/LocalModules/DevOther/src/main/java/ktx/dev/engine/media/luck_siege_lib/LuckCompressFileEngineImpl.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ open class LuckCompressFileEngineImpl(
9494
* @param sources 待转换数据
9595
* @return Uris
9696
*/
97-
protected fun toInputStreamList(
97+
open protected fun toInputStreamList(
9898
context: Context?,
9999
sources: List<Uri>
100100
): List<InputStreamProvider?> {
@@ -119,7 +119,7 @@ open class LuckCompressFileEngineImpl(
119119
* @param uri Uri
120120
* @return Uri 原始路径
121121
*/
122-
protected fun toUriPath(uri: Uri?): String? {
122+
open protected fun toUriPath(uri: Uri?): String? {
123123
return uri?.let {
124124
val uriString = it.toString()
125125
if (PictureMimeType.isContent(uriString)) uriString else it.path

lib/LocalModules/DevOther/src/main/java/ktx/dev/engine/media/luck_siege_lib/listener/LuckRecordAudioInterceptListener.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ open class LuckRecordAudioInterceptListener(
5454
* @param fragment Fragment
5555
* @param requestCode 请求 code
5656
*/
57-
protected fun startRecordSoundAction(
57+
open protected fun startRecordSoundAction(
5858
fragment: Fragment,
5959
requestCode: Int
6060
) {

0 commit comments

Comments
 (0)