feature/api_timeout_and_settings_cleaning #45
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature/api_timeout_and_settings_cleaning"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #43 #37 #19
f1f40ae2e0
to8b2be5c55c
@ -9,2 +10,3 @@
actual class DateUtils actual constructor(private val apiMajorVersion: Int) {
actual class DateUtils actual constructor(appSettingsService: AppSettingsService) {
val ads: AppSettingsService = appSettingsService // TODO: why is this needed now ?
I think you have to declare it's a val in the class constructor in order to make it a class variable and use it within functions.
I couldn't. I had to do as mentionned here to "fix" this.
@ -0,0 +69,4 @@
fun getUserName(): String {
if (_userName.isEmpty()) {
refrershUsername()
This has a typo
Good catch