2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-05 16:45:08 +00:00

Only use required access modifiers

This commit is contained in:
Nicolas Fella
2018-10-26 23:53:58 +02:00
parent 9650660e4a
commit a49a145d69
61 changed files with 176 additions and 176 deletions

View File

@@ -159,7 +159,7 @@ public class SMSPlugin extends Plugin {
* @param parent Plugin which owns this observer
* @param handler Handler object used to make the callback
*/
public MessageContentObserver(SMSPlugin parent, Handler handler) {
MessageContentObserver(SMSPlugin parent, Handler handler) {
super(handler);
mPlugin = parent;
}
@@ -331,7 +331,7 @@ public class SMSPlugin extends Plugin {
* @param messages Messages to include in the packet
* @return NetworkPacket of type PACKET_TYPE_SMS_MESSAGE
*/
public static NetworkPacket constructBulkMessagePacket(Collection<SMSHelper.Message> messages) {
private static NetworkPacket constructBulkMessagePacket(Collection<SMSHelper.Message> messages) {
NetworkPacket reply = new NetworkPacket(PACKET_TYPE_SMS_MESSAGE);
JSONArray body = new JSONArray();