mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
11 lines
155 B
Java
11 lines
155 B
Java
package org.briarproject.android;
|
|
|
|
import android.support.annotation.UiThread;
|
|
|
|
public interface Destroyable {
|
|
|
|
@UiThread
|
|
boolean hasBeenDestroyed();
|
|
|
|
}
|