Skip to content

Commit

Permalink
Remove redundant access modifier (#3405)
Browse files Browse the repository at this point in the history
Removed unnecessary access modifier
  • Loading branch information
CodeWithTamim authored Aug 3, 2024
1 parent adabb28 commit 0174ed9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class QSTileService : TileService() {
private var mMsgReceive: BroadcastReceiver? = null

private class ReceiveMessageHandler(context: QSTileService) : BroadcastReceiver() {
internal var mReference: SoftReference<QSTileService> = SoftReference(context)
var mReference: SoftReference<QSTileService> = SoftReference(context)
override fun onReceive(ctx: Context?, intent: Intent?) {
val context = mReference.get()
when (intent?.getIntExtra("key", 0)) {
Expand Down

0 comments on commit 0174ed9

Please sign in to comment.