2018-10-19 20:43:38 +02:00
|
|
|
package eu.siacs.conversations.services;
|
|
|
|
|
|
|
|
public class QuickConversationsService {
|
|
|
|
|
|
|
|
private final XmppConnectionService service;
|
|
|
|
|
|
|
|
QuickConversationsService(XmppConnectionService xmppConnectionService) {
|
|
|
|
this.service = xmppConnectionService;
|
|
|
|
}
|
2018-10-24 13:54:57 +02:00
|
|
|
|
|
|
|
public static boolean isQuicksy() {
|
|
|
|
return false;
|
|
|
|
}
|
2018-10-19 20:43:38 +02:00
|
|
|
}
|