Spellcheck.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@6106 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Alex Wenckus 2006-11-14 21:58:03 +00:00 committed by alex
parent 8d5225c6a9
commit 0537629ee9
10 changed files with 17 additions and 9 deletions

View File

@ -235,7 +235,7 @@ class PacketReader {
// Make a copy since it's possible that a listener will be removed from the list
listenersCopy = new ArrayList<ConnectionListener>(connectionListeners);
for (ConnectionListener listener : listenersCopy) {
listener.reconectionSuccessful();
listener.reconnectionSuccessful();
}
}

View File

@ -87,7 +87,7 @@ public class PrivacyListManager {
// ignore
}
public void reconectionSuccessful() {
public void reconnectionSuccessful() {
// ignore
}
});

View File

@ -234,7 +234,7 @@ public class ReconnectionManager implements ConnectionListener {
/**
* The connection has successfull gotten connected.
*/
public void reconectionSuccessful() {
public void reconnectionSuccessful() {
// ignore
}

View File

@ -802,7 +802,7 @@ public class Roster implements ConnectionListener {
// Ignore
}
public void reconectionSuccessful() {
public void reconnectionSuccessful() {
// Ignore
}
}

View File

@ -783,6 +783,14 @@ public class XMPPConnection {
return packetReader.createPacketCollector(packetFilter);
}
public PacketCollector createPacketCollector(PacketFilter packetFilter, boolean debugMode) {
if(debugMode) {
return new DebuggingPacketCollector(packetReader, packetFilter);
} else {
return packetReader.createPacketCollector(packetFilter);
}
}
/**
* Adds a connection listener to this connection that will be notified when
* the connection closes or fails. The connection needs to already be connected

View File

@ -116,7 +116,7 @@ public class ConsoleDebugger implements SmackDebugger {
")");
e.printStackTrace();
}
public void reconectionSuccessful() {
public void reconnectionSuccessful() {
System.out.println(
dateFormatter.format(new Date()) + " Connection reconnected (" +
connection.hashCode() +

View File

@ -161,7 +161,7 @@ public class ServiceDiscoveryManager {
// ignore
}
public void reconectionSuccessful() {
public void reconnectionSuccessful() {
// ignore
}
});

View File

@ -226,7 +226,7 @@ public class EnhancedDebugger implements SmackDebugger {
});
}
public void reconectionSuccessful() {
public void reconnectionSuccessful() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
statusField.setValue("Reconnection stablished");

View File

@ -113,7 +113,7 @@ class RoomListenerMultiplexor implements ConnectionListener {
// ignore
}
public void reconectionSuccessful() {
public void reconnectionSuccessful() {
// ignore
}

View File

@ -209,7 +209,7 @@ public class ReconnectionTest extends SmackTestCase {
}
public void reconectionSuccessful() {
public void reconnectionSuccessful() {
reconnected = true;
}