diff options
author | Anatoliy Sablin | 2017-11-06 16:54:00 +0300 |
---|---|---|
committer | Anatoliy Sablin | 2017-11-06 16:54:00 +0300 |
commit | bb2a47ea3c17f92c1d55d8b0d26cd26a880373d9 (patch) | |
tree | 29a8b9773671357948a1841c4a8663dd83b87e2d /juick-commands/src/main/java/com/juick/command/ShowSubscriptions.java | |
parent | 7fe4c65820d012d684405c56942b01da8e77bd23 (diff) |
Moved to message listener.
Diffstat (limited to 'juick-commands/src/main/java/com/juick/command/ShowSubscriptions.java')
-rw-r--r-- | juick-commands/src/main/java/com/juick/command/ShowSubscriptions.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/juick-commands/src/main/java/com/juick/command/ShowSubscriptions.java b/juick-commands/src/main/java/com/juick/command/ShowSubscriptions.java index ad35a4c2..d4548c17 100644 --- a/juick-commands/src/main/java/com/juick/command/ShowSubscriptions.java +++ b/juick-commands/src/main/java/com/juick/command/ShowSubscriptions.java @@ -1,7 +1,6 @@ package com.juick.command; import com.juick.User; -import com.juick.server.protocol.ProtocolListener; import com.juick.service.SubscriptionService; import com.juick.service.UserService; import lombok.Getter; @@ -39,7 +38,7 @@ public class ShowSubscriptions implements Command { } @Override - public String execute(User sender, ProtocolListener protocolListener, String command) { + public String execute(User sender, MessageListener protocolListener, String command) { List<User> friends = getUserService().getUserFriends(sender.getUid()); List<String> tags = getSubscriptionService().getSubscribedTags(sender); String msg = friends.size() > 0 ? "You are subscribed to users:" + friends.stream().map(u -> "\n@" + u.getName()) |