Skip to content

Commit

Permalink
Fix lint error on Gradle 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anggrayudi committed Mar 21, 2022
1 parent a265c20 commit 64a5dcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ android.enableJetifier=true
kotlin.code.style=official
GROUP=com.anggrayudi
POM_ARTIFACT_ID=storage
VERSION_NAME=1.2.0-SNAPSHOT
VERSION_NAME=1.2.1-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import kotlinx.coroutines.CoroutineScope
* Created on 02/06/21
* @author Anggrayudi H
*/
@RestrictTo(RestrictTo.Scope.LIBRARY)
abstract class BaseFileCallback<ErrorCode, Report, Result>(var uiScope: CoroutineScope) {
abstract class BaseFileCallback<ErrorCode, Report, Result>
@RestrictTo(RestrictTo.Scope.LIBRARY) constructor(var uiScope: CoroutineScope) {

@UiThread
open fun onValidate() {
Expand Down

0 comments on commit 64a5dcd

Please sign in to comment.