mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-14 18:57:30 +00:00
Convert ICrashHandler to kotlin
This commit is contained in:
parent
99af3dffaa
commit
90df6e33b0
@ -1,7 +1,9 @@
|
||||
package awaisomereport;
|
||||
package awaisomereport
|
||||
|
||||
public interface ICrashHandler {
|
||||
void uncaughtException(Thread t,
|
||||
Throwable exception,
|
||||
Thread.UncaughtExceptionHandler defaultEH);
|
||||
}
|
||||
interface ICrashHandler {
|
||||
fun uncaughtException(
|
||||
t: Thread,
|
||||
exception: Throwable,
|
||||
defaultExceptionHandler: Thread.UncaughtExceptionHandler
|
||||
)
|
||||
}
|
Loading…
Reference in New Issue
Block a user