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

s/ the the / the /g

This commit is contained in:
Guus der Kinderen 2023-01-19 16:16:12 +01:00 committed by Florian Schmaus
parent 07f157b00f
commit 3a84a1ff47
19 changed files with 21 additions and 21 deletions

View file

@ -52,7 +52,7 @@ public class MultiUserChatCreationTest extends SmackTestCase {
// Create the room
muc.create("testbot1");
// Get the the room's configuration form
// Get the room's configuration form
Form form = muc.getConfigurationForm();
assertNotNull("No room configuration form", form);
// Create a new form to submit based on the original form

View file

@ -94,7 +94,7 @@ public final class ChatStateManager extends Manager {
* not yet exist.
*
* @param connection the connection to return the ChatStateManager
* @return the ChatStateManager related the the connection.
* @return the ChatStateManager related the connection.
*/
public static synchronized ChatStateManager getInstance(final XMPPConnection connection) {
ChatStateManager manager = INSTANCES.get(connection);

View file

@ -108,7 +108,7 @@ public abstract class AdHocCommand {
}
/**
* Set the the human readable name of the command, usually used for
* Set the human readable name of the command, usually used for
* displaying in a UI.
*
* @param name the name.

View file

@ -111,7 +111,7 @@ public class IncomingFileTransfer extends FileTransfer {
* @param file The location to save the file.
* @throws SmackException when the file transfer fails
* @throws IOException if an I/O error occurred.
* @throws IllegalArgumentException This exception is thrown when the the provided file is
* @throws IllegalArgumentException This exception is thrown when the provided file is
* either null, or cannot be written to.
*/
public void receiveFile(final File file) throws SmackException, IOException {

View file

@ -35,7 +35,7 @@ public interface InvitationListener {
* Called when the an invitation to join a MUC room is received.<p>
*
* If the room is password-protected, the invitee will receive a password to use to join
* the room. If the room is members-only, the the invitee may be added to the member list.
* the room. If the room is members-only, the invitee may be added to the member list.
*
* @param conn the XMPPConnection that received the invitation.
* @param room the room that invitation refers to.

View file

@ -67,7 +67,7 @@ public final class MucEnterConfiguration {
else {
joinPresenceBuilder = builder.joinPresence.asBuilder();
}
// Indicate the the client supports MUC
// Indicate the client supports MUC
joinPresenceBuilder.addExtension(new MUCInitialPresence(password, maxChars, maxStanzas, seconds,
since));
joinPresence = joinPresenceBuilder.build();

View file

@ -994,7 +994,7 @@ public class MultiUserChat {
* will be sent to the room which in turn will forward the invitation to the invitee.<p>
*
* If the room is password-protected, the invitee will receive a password to use to join
* the room. If the room is members-only, the the invitee may be added to the member list.
* the room. If the room is members-only, the invitee may be added to the member list.
*
* @param user the user to invite to the room.(e.g. hecate@shakespeare.lit)
* @param reason the reason why the user is being invited.
@ -1010,7 +1010,7 @@ public class MultiUserChat {
* will be sent to the room which in turn will forward the invitation to the invitee.<p>
*
* If the room is password-protected, the invitee will receive a password to use to join
* the room. If the room is members-only, the the invitee may be added to the member list.
* the room. If the room is members-only, the invitee may be added to the member list.
*
* @param message the message to use for sending the invitation.
* @param user the user to invite to the room.(e.g. hecate@shakespeare.lit)
@ -1040,7 +1040,7 @@ public class MultiUserChat {
* will be sent to the room which in turn will forward the invitation to the invitee.<p>
*
* If the room is password-protected, the invitee will receive a password to use to join
* the room. If the room is members-only, the the invitee may be added to the member list.
* the room. If the room is members-only, the invitee may be added to the member list.
*
* @param messageBuilder the message to use for sending the invitation.
* @param user the user to invite to the room.(e.g. hecate@shakespeare.lit)

View file

@ -28,7 +28,7 @@ public class ItemDeleteEvent extends SubscriptionEvent {
private List<String> itemIds = Collections.emptyList();
/**
* Constructs an <code>ItemDeleteEvent</code> that indicates the the supplied
* Constructs an <code>ItemDeleteEvent</code> that indicates the supplied
* items (by id) have been deleted, and that the event matches the listed
* subscriptions. The subscriptions would have been created by calling
* {@link LeafNode#subscribe(String)}.