mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Remove deprecated methods/fields scheduled for removal in Smack 4.4
This commit is contained in:
parent
0cbbac90bc
commit
12e20c2d6c
3 changed files with 0 additions and 23 deletions
|
@ -240,18 +240,6 @@ public final class SmackConfiguration {
|
||||||
compressionHandlers.add(xmppInputOutputStream);
|
compressionHandlers.add(xmppInputOutputStream);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get compression handlers.
|
|
||||||
*
|
|
||||||
* @return a list of compression handlers.
|
|
||||||
* @deprecated use {@link #getCompressionHandlers()} instead.
|
|
||||||
*/
|
|
||||||
@Deprecated
|
|
||||||
// TODO: Remove in Smack 4.4.
|
|
||||||
public static List<XMPPInputOutputStream> getCompresionHandlers() {
|
|
||||||
return getCompressionHandlers();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get compression handlers.
|
* Get compression handlers.
|
||||||
*
|
*
|
||||||
|
|
|
@ -98,13 +98,6 @@ public abstract class SmackException extends Exception {
|
||||||
return new NoResponseException(sb.toString());
|
return new NoResponseException(sb.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
// TODO: Remove in Smack 4.4.
|
|
||||||
public static NoResponseException newWith(long timeout,
|
|
||||||
StanzaCollector collector) {
|
|
||||||
return newWith(timeout, collector.getStanzaFilter(), false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static NoResponseException newWith(long timeout,
|
public static NoResponseException newWith(long timeout,
|
||||||
StanzaCollector collector, boolean stanzaCollectorCancelled) {
|
StanzaCollector collector, boolean stanzaCollectorCancelled) {
|
||||||
return newWith(timeout, collector.getStanzaFilter(), stanzaCollectorCancelled);
|
return newWith(timeout, collector.getStanzaFilter(), stanzaCollectorCancelled);
|
||||||
|
|
|
@ -26,10 +26,6 @@ public class StanzaIdProvider extends ExtensionElementProvider<StanzaIdElement>
|
||||||
|
|
||||||
public static final StanzaIdProvider INSTANCE = new StanzaIdProvider();
|
public static final StanzaIdProvider INSTANCE = new StanzaIdProvider();
|
||||||
|
|
||||||
// TODO: Remove in Smack 4.4.
|
|
||||||
@Deprecated
|
|
||||||
public static final StanzaIdProvider TEST_INSTANCE = INSTANCE;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public StanzaIdElement parse(XmlPullParser parser, int initialDepth, XmlEnvironment xmlEnvironment) {
|
public StanzaIdElement parse(XmlPullParser parser, int initialDepth, XmlEnvironment xmlEnvironment) {
|
||||||
String id = parser.getAttributeValue(null, StanzaIdElement.ATTR_ID);
|
String id = parser.getAttributeValue(null, StanzaIdElement.ATTR_ID);
|
||||||
|
|
Loading…
Reference in a new issue