Expose UserTrackerImpl initialize function

Bug: 276914935
Test: build
Change-Id: I7da2b914ff8795d427bce4f26c7fad4829d2c050
This commit is contained in:
Alex Stetson
2023-03-14 09:35:05 -07:00
parent e7afcdd220
commit da65517480

View File

@@ -103,7 +103,7 @@ open class UserTrackerImpl internal constructor(
@GuardedBy("callbacks")
private val callbacks: MutableList<DataItem> = ArrayList()
fun initialize(startingUser: Int) {
open fun initialize(startingUser: Int) {
if (initialized) {
return
}