From 3d926a034ca114462bf429467cbea2ea27dc6042 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Wed, 11 Jun 2014 16:20:24 +0200 Subject: [PATCH] Fix documentation to use correct XMPPConnection names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some parts of the documentation still refer to Connection connection = new XMPPConnection(…) when it should be XMPPConnection connection = new XMPPTCPConnection(…) SMACK-574 --- documentation/connections.html | 8 ++++---- documentation/gettingstarted.html | 6 +++--- documentation/overview.html | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/documentation/connections.html b/documentation/connections.html index 081e70f1a..36fa17f2c 100644 --- a/documentation/connections.html +++ b/documentation/connections.html @@ -20,8 +20,8 @@

The org.jivesoftware.smack.XMPPConnection class manages your connection to an XMPP - server. The default implementation is the org.jivesoftware.smack.XMPPConnection - class. Two constructors are mainly used. The first, XMPPConnection(String) takes + server. The default implementation is the org.jivesoftware.smack.XMPPTCPConnection + class. Two constructors are mainly used. The first, XMPPTCPConnection(String) takes the server name you'd like to connect to as an argument. All default connection settings will be used:

- Alternatively, you can use the XMPPServer(ConnectionConfiguration) constructor to + Alternatively, you can use the XMPPTCPConnection(ConnectionConfiguration) constructor to specify advanced connection settings. Some of these settings include: