diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/BriefMe.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/BriefMe.java index f1de7608c..141250508 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/BriefMe.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/BriefMe.java @@ -13,7 +13,7 @@ public class BriefMe implements ClientToServerMessage this.uuid = entity.getValue(RemoteModel.REMOTE_ID_PROPERTY); } - public void send() { + public void sendMessage() { // Send message } diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ChangesHappened.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ChangesHappened.java index 57e5a0ae7..0b7095c10 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ChangesHappened.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ChangesHappened.java @@ -38,7 +38,7 @@ public class ChangesHappened implements ClientToServer populateChanges(); } - public void send() { + public void sendMessage() { // Process changes list and send to server } diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ClientToServerMessage.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ClientToServerMessage.java index bf972dca8..5d9d3726f 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ClientToServerMessage.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ClientToServerMessage.java @@ -2,6 +2,6 @@ package com.todoroo.astrid.actfm.sync.messages; public interface ClientToServerMessage { - public void send(); + public void sendMessage(); } diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/RequestDoubleCheck.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/RequestDoubleCheck.java index d95d0d673..adcfbc4f6 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/RequestDoubleCheck.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/RequestDoubleCheck.java @@ -12,7 +12,7 @@ public class RequestDoubleCheck implements ClientToSer this.uuid = entity.getValue(RemoteModel.REMOTE_ID_PROPERTY); } - public void send() { + public void sendMessage() { // Send message } } diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ServerToClientMessage.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ServerToClientMessage.java index a97a7fadf..760a31ffd 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ServerToClientMessage.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/ServerToClientMessage.java @@ -2,4 +2,6 @@ package com.todoroo.astrid.actfm.sync.messages; public interface ServerToClientMessage { + public void processMessage(); + }