1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-10 17:49:38 +02:00

s/JEP/XEP/

also s;jabber.org/jeps;xmpp.org/extensions;
This commit is contained in:
Florian Schmaus 2014-06-14 11:45:38 +02:00
parent 273c2d7da9
commit eec0df386c
30 changed files with 56 additions and 56 deletions

View file

@ -32,7 +32,7 @@ import java.util.List;
/**
* Tests handling of offline messaging using OfflineMessageManager. This server requires the
* server to support JEP-0013: Flexible Offline Message Retrieval.
* server to support XEP-0013: Flexible Offline Message Retrieval.
*
* @author Gaston Dombiak
*/
@ -44,7 +44,7 @@ public class OfflineMessageManagerTest extends SmackTestCase {
public void testDiscoverFlexibleRetrievalSupport() throws XMPPException {
OfflineMessageManager offlineManager = new OfflineMessageManager(getConnection(1));
assertTrue("Server does not support JEP-13", offlineManager.supportsFlexibleRetrieval());
assertTrue("Server does not support XEP-13", offlineManager.supportsFlexibleRetrieval());
}
/**