Skip to content

Commit 554b940

Browse files
1951FDGhannesa2
authored andcommitted
Change visibility modifier for _lastLogEntry from private to protected (necessary for subclassing)
1 parent dc4d09d commit 554b940

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

LogcatCoreLib/src/main/java/info/hannes/timber/FileLoggingTree.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ open class FileLoggingTree(externalCacheDir: File, context: Context? = null, fil
7777

7878
private val LOG_TAG = FileLoggingTree::class.java.simpleName
7979
private var logImpossible = false
80-
private val _lastLogEntry = MutableLiveData<Event<String>>()
80+
protected val _lastLogEntry = MutableLiveData<Event<String>>()
8181
val lastLogEntry: LiveData<Event<String>>
8282
get() = _lastLogEntry
8383
}

0 commit comments

Comments
 (0)