mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
make SecretOwnerTask states public
This commit is contained in:
@@ -18,7 +18,7 @@ public interface SecretOwnerTask {
|
||||
|
||||
class State {
|
||||
|
||||
static class Listening extends State {
|
||||
public static class Listening extends State {
|
||||
|
||||
private final PublicKey publicKey;
|
||||
private final InetSocketAddress socketAddress;
|
||||
@@ -38,16 +38,16 @@ public interface SecretOwnerTask {
|
||||
}
|
||||
}
|
||||
|
||||
static class ReceivingShard extends State {
|
||||
public static class ReceivingShard extends State {
|
||||
}
|
||||
|
||||
static class SendingAck extends State {
|
||||
public static class SendingAck extends State {
|
||||
}
|
||||
|
||||
static class Success extends State {
|
||||
public static class Success extends State {
|
||||
}
|
||||
|
||||
static class Failure extends State {
|
||||
public static class Failure extends State {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user