mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-12-12 14:01:08 +01:00
s/processPacket/processStanza/ s/PacketCollector/StanzaCollector/
This commit is contained in:
parent
9328182912
commit
90a5e289f8
100 changed files with 406 additions and 406 deletions
|
|
@ -536,7 +536,7 @@ public final class ServiceDiscoveryManager extends Manager {
|
|||
disco.setTo(entityID);
|
||||
disco.setNode(node);
|
||||
|
||||
Stanza result = connection().createPacketCollectorAndSend(disco).nextResultOrThrow();
|
||||
Stanza result = connection().createStanzaCollectorAndSend(disco).nextResultOrThrow();
|
||||
|
||||
return (DiscoverInfo) result;
|
||||
}
|
||||
|
|
@ -575,7 +575,7 @@ public final class ServiceDiscoveryManager extends Manager {
|
|||
disco.setTo(entityID);
|
||||
disco.setNode(node);
|
||||
|
||||
Stanza result = connection().createPacketCollectorAndSend(disco).nextResultOrThrow();
|
||||
Stanza result = connection().createStanzaCollectorAndSend(disco).nextResultOrThrow();
|
||||
return (DiscoverItems) result;
|
||||
}
|
||||
|
||||
|
|
@ -647,7 +647,7 @@ public final class ServiceDiscoveryManager extends Manager {
|
|||
discoverItems.setTo(entityID);
|
||||
discoverItems.setNode(node);
|
||||
|
||||
connection().createPacketCollectorAndSend(discoverItems).nextResultOrThrow();
|
||||
connection().createStanzaCollectorAndSend(discoverItems).nextResultOrThrow();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue