aboutsummaryrefslogtreecommitdiff
path: root/juick-commands/src/main/java/com/juick/command/PostMessage.java
diff options
context:
space:
mode:
authorGravatar Anatoliy Sablin2017-11-06 16:54:00 +0300
committerGravatar Anatoliy Sablin2017-11-06 16:54:00 +0300
commitbb2a47ea3c17f92c1d55d8b0d26cd26a880373d9 (patch)
tree29a8b9773671357948a1841c4a8663dd83b87e2d /juick-commands/src/main/java/com/juick/command/PostMessage.java
parent7fe4c65820d012d684405c56942b01da8e77bd23 (diff)
Moved to message listener.
Diffstat (limited to 'juick-commands/src/main/java/com/juick/command/PostMessage.java')
-rw-r--r--juick-commands/src/main/java/com/juick/command/PostMessage.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/juick-commands/src/main/java/com/juick/command/PostMessage.java b/juick-commands/src/main/java/com/juick/command/PostMessage.java
index 2ef5ce22..9dba3396 100644
--- a/juick-commands/src/main/java/com/juick/command/PostMessage.java
+++ b/juick-commands/src/main/java/com/juick/command/PostMessage.java
@@ -2,7 +2,6 @@ package com.juick.command;
import com.juick.Tag;
import com.juick.User;
-import com.juick.server.protocol.ProtocolListener;
import com.juick.server.util.TagUtils;
import com.juick.service.MessagesService;
import com.juick.service.SubscriptionService;
@@ -47,7 +46,7 @@ public class PostMessage implements Command {
}
@Override
- public String execute(User sender, ProtocolListener protocolListener, String command) {
+ public String execute(User sender, MessageListener protocolListener, String command) {
List<Tag> tags = getTagService().fromString(command, false);
String body = command.substring(TagUtils.toString(tags).length());
int mid = getMessagesService().createMessage(sender.getUid(), body, null, tags);