aboutsummaryrefslogtreecommitdiff
path: root/src/QXmppStreamFeatures.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-08-16 09:10:51 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-08-16 09:10:51 +0000
commit87f7cdda1f09b73007494114df9a10d1b7d39e5e (patch)
treed0c001f40bed3e9a9f7a91176163f65f447b006c /src/QXmppStreamFeatures.cpp
parent45dc743c39b5eb81d3cac02efc59e9f83fbac8ff (diff)
downloadqxmpp-87f7cdda1f09b73007494114df9a10d1b7d39e5e.tar.gz
remove debug code
Diffstat (limited to 'src/QXmppStreamFeatures.cpp')
-rw-r--r--src/QXmppStreamFeatures.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/QXmppStreamFeatures.cpp b/src/QXmppStreamFeatures.cpp
index 71a5d32f..142d752a 100644
--- a/src/QXmppStreamFeatures.cpp
+++ b/src/QXmppStreamFeatures.cpp
@@ -21,7 +21,6 @@
*
*/
-#include <QDebug>
#include <QDomElement>
#include "QXmppConstants.h"
@@ -101,10 +100,8 @@ void QXmppStreamFeatures::parse(const QDomElement &element)
if (mechs.namespaceURI() == ns_sasl)
{
QDomElement subElement = mechs.firstChildElement("mechanism");
- qDebug("SASL Authentication mechanisms:");
while(!subElement.isNull())
{
- qDebug() << subElement.text();
if (subElement.text() == QLatin1String("PLAIN"))
m_authMechanisms << QXmppConfiguration::SASLPlain;
else if (subElement.text() == QLatin1String("DIGEST-MD5"))