summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/components
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/components')
-rw-r--r--sca-cpp/trunk/components/chat/xmpp.hpp2
-rw-r--r--sca-cpp/trunk/components/http/server-test.scm2
-rw-r--r--sca-cpp/trunk/components/queue/qpid.hpp2
-rw-r--r--sca-cpp/trunk/components/webservice/axis2.hpp1
4 files changed, 1 insertions, 6 deletions
diff --git a/sca-cpp/trunk/components/chat/xmpp.hpp b/sca-cpp/trunk/components/chat/xmpp.hpp
index 88174613a0..31b4ed3a13 100644
--- a/sca-cpp/trunk/components/chat/xmpp.hpp
+++ b/sca-cpp/trunk/components/chat/xmpp.hpp
@@ -51,7 +51,6 @@ public:
}
~XMPPRuntime() {
- debug("chat::~xmppruntime");
xmpp_shutdown();
}
@@ -79,7 +78,6 @@ public:
XMPPClient& operator=(const XMPPClient& xc) = delete;
~XMPPClient() {
- debug("chat::~xmppclient");
extern const failable<bool> disconnect(XMPPClient& xc);
if (!owner)
return;
diff --git a/sca-cpp/trunk/components/http/server-test.scm b/sca-cpp/trunk/components/http/server-test.scm
index 4bbff6e5c2..41d6296ba3 100644
--- a/sca-cpp/trunk/components/http/server-test.scm
+++ b/sca-cpp/trunk/components/http/server-test.scm
@@ -22,7 +22,7 @@
; ATOMPub test case
(define (get id)
- (if (nul id)
+ (if (null? id)
'((feed (title "Sample Feed") (id "123456789") (entry
(((title "Item") (id "111") (content (item (name "Apple") (currencyCode "USD") (currencySymbol "$") (price 2.99))))
((title "Item") (id "222") (content (item (name "Orange") (currencyCode "USD") (currencySymbol "$") (price 3.55))))
diff --git a/sca-cpp/trunk/components/queue/qpid.hpp b/sca-cpp/trunk/components/queue/qpid.hpp
index 77361461c6..076d9f1241 100644
--- a/sca-cpp/trunk/components/queue/qpid.hpp
+++ b/sca-cpp/trunk/components/queue/qpid.hpp
@@ -68,7 +68,6 @@ public:
QpidConnection& operator=(const QpidConnection& qc) = delete;
~QpidConnection() {
- debug("queue::~qpidonnection");
if (!owner)
return;
c.close();
@@ -109,7 +108,6 @@ public:
}
~QpidSession() {
- debug("queue::~qpidsession");
if (!owner)
return;
s.close();
diff --git a/sca-cpp/trunk/components/webservice/axis2.hpp b/sca-cpp/trunk/components/webservice/axis2.hpp
index fd4d1f9a02..d6d2107f03 100644
--- a/sca-cpp/trunk/components/webservice/axis2.hpp
+++ b/sca-cpp/trunk/components/webservice/axis2.hpp
@@ -72,7 +72,6 @@ public:
}
~Axis2Context() {
- debug("webservice::~axis2context");
if (!owner || env == NULL)
return;
axutil_env_free(env);