1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-12-08 14:11:07 +01:00

s/ a XMPP/ an XMPP/

This commit is contained in:
Florian Schmaus 2015-02-12 12:13:19 +01:00
parent a927d55bb1
commit 57c1b57b7c
32 changed files with 53 additions and 53 deletions

View file

@ -692,7 +692,7 @@ public final class Socks5BytestreamManager implements BytestreamManager {
}
/**
* Responses to the given packet's sender with a XMPP error that a SOCKS5 Bytestream is not
* Responses to the given packet's sender with an XMPP error that a SOCKS5 Bytestream is not
* accepted.
* <p>
* Specified in XEP-65 5.3.1 (Example 13)

View file

@ -99,7 +99,7 @@ class Socks5ClientForInitiator extends Socks5Client {
}
/**
* Activates the SOCKS5 Bytestream by sending a XMPP SOCKS5 Bytestream activation packet to the
* Activates the SOCKS5 Bytestream by sending an XMPP SOCKS5 Bytestream activation packet to the
* SOCKS5 proxy.
* @throws XMPPErrorException
* @throws NoResponseException

View file

@ -53,7 +53,7 @@ import org.jivesoftware.smackx.xdata.Form;
* An AdHocCommandManager is responsible for keeping the list of available
* commands offered by a service and for processing commands requests.
*
* Pass in a XMPPConnection instance to
* Pass in an XMPPConnection instance to
* {@link #getAddHocCommandsManager(org.jivesoftware.smack.XMPPConnection)} in order to
* get an instance of this class.
*
@ -70,7 +70,7 @@ public class AdHocCommandManager extends Manager {
private static final int SESSION_TIMEOUT = 2 * 60;
/**
* Map a XMPPConnection with it AdHocCommandManager. This map have a key-value
* Map an XMPPConnection with it AdHocCommandManager. This map have a key-value
* pair for every active connection.
*/
private static Map<XMPPConnection, AdHocCommandManager> instances = new WeakHashMap<>();

View file

@ -72,7 +72,7 @@ public class AccountManager extends Manager {
/**
* Creates a new AccountManager instance.
*
* @param connection a connection to a XMPP server.
* @param connection a connection to an XMPP server.
*/
private AccountManager(XMPPConnection connection) {
super(connection);

View file

@ -70,7 +70,7 @@ public class PEPManager {
/**
* Creates a new PEP exchange manager.
*
* @param connection a XMPPConnection which is used to send and receive messages.
* @param connection an XMPPConnection which is used to send and receive messages.
*/
public PEPManager(XMPPConnection connection) {
this.connection = connection;

View file

@ -35,7 +35,7 @@ public class Ping extends SimpleIQ {
}
/**
* Create a XMPP Pong for this Ping
* Create an XMPP Pong for this Ping
*
* @return the Pong
*/