Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit ddceefda authored by Wolf-Martell Montwé's avatar Wolf-Martell Montwé Committed by GitHub
Browse files

Merge pull request #8115 from thunderbird/refactorAccountsChangeListener

Refactor AccountsChangeListener to Kotlin
parents f55323d8 9378f5ed
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
package app.k9mail.legacy.account;


public interface AccountsChangeListener {
    void onAccountsChanged();
}
+5 −0
Original line number Diff line number Diff line
package app.k9mail.legacy.account

fun interface AccountsChangeListener {
    fun onAccountsChanged()
}