diff options
author | Ingo Bauersachs <ingo@jitsi.org> | 2017-01-07 20:48:14 +0100 |
---|---|---|
committer | Ingo Bauersachs <ingo@jitsi.org> | 2017-01-07 20:48:14 +0100 |
commit | 70b8b7d67b894fe7753b8681ee37cfa4721f589f (patch) | |
tree | ece45bfb07af4b7e8ffd61c4593ed34d3aecdce8 /src | |
parent | 589fd0b457db6d188de1a5961abb56586e136add (diff) | |
download | jitsi-70b8b7d67b894fe7753b8681ee37cfa4721f589f.zip jitsi-70b8b7d67b894fe7753b8681ee37cfa4721f589f.tar.gz jitsi-70b8b7d67b894fe7753b8681ee37cfa4721f589f.tar.bz2 |
Remove unused and long deprecated method
Diffstat (limited to 'src')
2 files changed, 0 insertions, 24 deletions
diff --git a/src/net/java/sip/communicator/service/protocol/AbstractOperationSetBasicInstantMessaging.java b/src/net/java/sip/communicator/service/protocol/AbstractOperationSetBasicInstantMessaging.java index 4270a78..6f038b5 100644 --- a/src/net/java/sip/communicator/service/protocol/AbstractOperationSetBasicInstantMessaging.java +++ b/src/net/java/sip/communicator/service/protocol/AbstractOperationSetBasicInstantMessaging.java @@ -137,14 +137,6 @@ public abstract class AbstractOperationSetBasicInstantMessaging return createMessage(messageText); } - /** - * {@inheritDoc} - */ - public Message createMessageWithUID(String messageText, String messageUID) - { - return createMessage(messageText); - } - public abstract Message createMessage( String content, String contentType, String encoding, String subject); diff --git a/src/net/java/sip/communicator/service/protocol/OperationSetBasicInstantMessaging.java b/src/net/java/sip/communicator/service/protocol/OperationSetBasicInstantMessaging.java index c0918cb..55dec9a 100644 --- a/src/net/java/sip/communicator/service/protocol/OperationSetBasicInstantMessaging.java +++ b/src/net/java/sip/communicator/service/protocol/OperationSetBasicInstantMessaging.java @@ -80,22 +80,6 @@ public interface OperationSetBasicInstantMessaging String messageText, String contentType, String messageUID); /** - * Create a Message instance with the specified UID and a default - * (text/plain) content type and encoding. - * This method can be useful when message correction is required. One can - * construct the corrected message to have the same UID as the message - * before correction. - * - * @param messageText the string content of the message. - * @param messageUID the unique identifier of this message. - * @return Message the newly created message - * - * @deprecated Method will be removed once OTR bundle is updated on Android. - */ - @Deprecated - public Message createMessageWithUID(String messageText, String messageUID); - - /** * Sends the <tt>message</tt> to the destination indicated by the * <tt>to</tt> contact. * |