mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-26 05:52:06 +01:00
Use PacketTypeFilter.PRESENCE in EntityCapsManager
This commit is contained in:
parent
63d52f6eaa
commit
55d7c57a4f
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ public class EntityCapsManager extends Manager {
|
||||||
ELEMENT, NAMESPACE));
|
ELEMENT, NAMESPACE));
|
||||||
private static final PacketFilter PRESENCES_WITHOUT_CAPS = new AndFilter(new PacketTypeFilter(Presence.class), new NotFilter(new PacketExtensionFilter(
|
private static final PacketFilter PRESENCES_WITHOUT_CAPS = new AndFilter(new PacketTypeFilter(Presence.class), new NotFilter(new PacketExtensionFilter(
|
||||||
ELEMENT, NAMESPACE)));
|
ELEMENT, NAMESPACE)));
|
||||||
private static final PacketFilter PRESENCES = new PacketTypeFilter(Presence.class);
|
private static final PacketFilter PRESENCES = PacketTypeFilter.PRESENCE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Map of (node + '#" + hash algorithm) to DiscoverInfo data
|
* Map of (node + '#" + hash algorithm) to DiscoverInfo data
|
||||||
|
|
Loading…
Reference in a new issue