diff options
author | Vitaly Takmazov | 2022-12-31 02:20:29 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2022-12-31 03:01:06 +0300 |
commit | aa9240e5431c5ee81f3d25d6481c66c445d11711 (patch) | |
tree | 4faae3b64702d84833d9bafce8092c25fa1ba731 /src/main/java/com/juick/config | |
parent | bf5550b515c305c017cf8b3fcf04976d74314233 (diff) |
Remove roster chats
Diffstat (limited to 'src/main/java/com/juick/config')
-rw-r--r-- | src/main/java/com/juick/config/XMPPConfig.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main/java/com/juick/config/XMPPConfig.java b/src/main/java/com/juick/config/XMPPConfig.java index 5593b228..76ccb4a0 100644 --- a/src/main/java/com/juick/config/XMPPConfig.java +++ b/src/main/java/com/juick/config/XMPPConfig.java @@ -60,13 +60,11 @@ public class XMPPConfig { private ChatService chatService; @Inject private Executor applicationTaskExecutor; - @Inject - private WebApp webApp; @Bean(destroyMethod = "close") XMPPManager xmppConnection() { return new XMPPManager(botJid, componentName, componentPort, componentHost, password, vCardImage, commandsManager, storageService, messagesService, userService, chatService, - applicationTaskExecutor, webApp); + applicationTaskExecutor); } } |