mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Remove redundant public modifiers from interface
This commit is contained in:
parent
4f9c0172ef
commit
b39f7c1807
1 changed files with 8 additions and 8 deletions
|
@ -67,21 +67,21 @@ public interface Signal extends DBusInterface {
|
|||
String name, String about, String aboutEmoji, String avatarPath, boolean removeAvatar
|
||||
) throws Error.Failure;
|
||||
|
||||
public String version();
|
||||
String version();
|
||||
|
||||
public List<String> listNumbers();
|
||||
List<String> listNumbers();
|
||||
|
||||
public List<String> getContactNumber(final String name) throws Error.Failure;
|
||||
List<String> getContactNumber(final String name) throws Error.Failure;
|
||||
|
||||
public void quitGroup(final byte[] groupId) throws Error.GroupNotFound, Error.Failure;
|
||||
void quitGroup(final byte[] groupId) throws Error.GroupNotFound, Error.Failure;
|
||||
|
||||
public boolean isContactBlocked(final String number);
|
||||
boolean isContactBlocked(final String number);
|
||||
|
||||
public boolean isGroupBlocked(final byte[] groupId);
|
||||
boolean isGroupBlocked(final byte[] groupId);
|
||||
|
||||
public boolean isMember(final byte[] groupId);
|
||||
boolean isMember(final byte[] groupId);
|
||||
|
||||
public void joinGroup(final String groupLink) throws Error.Failure;
|
||||
void joinGroup(final String groupLink) throws Error.Failure;
|
||||
|
||||
class MessageReceived extends DBusSignal {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue