0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-19 19:52:14 +02:00

Merge pull request #8115 from thunderbird/refactorAccountsChangeListener

Refactor AccountsChangeListener to Kotlin
This commit is contained in:
Wolf-Martell Montwé 2024-09-06 15:17:47 +02:00 committed by GitHub
commit ddceefda72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 6 deletions

View File

@ -1,6 +0,0 @@
package app.k9mail.legacy.account;
public interface AccountsChangeListener {
void onAccountsChanged();
}

View File

@ -0,0 +1,5 @@
package app.k9mail.legacy.account
fun interface AccountsChangeListener {
fun onAccountsChanged()
}