mirror of https://github.com/tasks/tasks
Fix crash on null parameter
parent
af3b33513f
commit
ca88703fd2
@ -1,7 +0,0 @@
|
|||||||
package org.tasks.play;
|
|
||||||
|
|
||||||
public interface AuthResultHandler {
|
|
||||||
void authenticationSuccessful(String accountName);
|
|
||||||
|
|
||||||
void authenticationFailed(String message);
|
|
||||||
}
|
|
@ -0,0 +1,7 @@
|
|||||||
|
package org.tasks.play
|
||||||
|
|
||||||
|
interface AuthResultHandler {
|
||||||
|
fun authenticationSuccessful(accountName: String)
|
||||||
|
|
||||||
|
fun authenticationFailed(message: String?)
|
||||||
|
}
|
Loading…
Reference in New Issue