summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/DevGuideExamples')
-rw-r--r--TAO/DevGuideExamples/AMH_AMI/inner_cb.cpp1
-rw-r--r--TAO/DevGuideExamples/LocalObjects/Messenger/Messenger_i.cpp1
-rw-r--r--TAO/DevGuideExamples/PortableInterceptors/Auth/ClientInterceptor.cpp1
-rw-r--r--TAO/DevGuideExamples/PortableInterceptors/IOR/ClientInterceptor.cpp1
-rw-r--r--TAO/DevGuideExamples/PortableInterceptors/PICurrent/ClientInterceptor.cpp1
-rw-r--r--TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ClientInterceptor.cpp2
-rw-r--r--TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ServerInterceptor.cpp1
7 files changed, 0 insertions, 8 deletions
diff --git a/TAO/DevGuideExamples/AMH_AMI/inner_cb.cpp b/TAO/DevGuideExamples/AMH_AMI/inner_cb.cpp
index 6ce5e712976..e4d990f9161 100644
--- a/TAO/DevGuideExamples/AMH_AMI/inner_cb.cpp
+++ b/TAO/DevGuideExamples/AMH_AMI/inner_cb.cpp
@@ -13,7 +13,6 @@ Inner_callback_i::Inner_callback_i (PortableServer::POA_ptr p,
Inner_callback_i::~Inner_callback_i (void)
{
std::cout << "Inner_callback_i destroying" << std::endl;
-
}
void
diff --git a/TAO/DevGuideExamples/LocalObjects/Messenger/Messenger_i.cpp b/TAO/DevGuideExamples/LocalObjects/Messenger/Messenger_i.cpp
index 77880838f4f..37d68bd61df 100644
--- a/TAO/DevGuideExamples/LocalObjects/Messenger/Messenger_i.cpp
+++ b/TAO/DevGuideExamples/LocalObjects/Messenger/Messenger_i.cpp
@@ -22,6 +22,5 @@ CORBA::Boolean Messenger_i::send_message (
CORBA::string_free(message);
message = CORBA::string_dup("Thanks for the message.");
return true;
-
}
diff --git a/TAO/DevGuideExamples/PortableInterceptors/Auth/ClientInterceptor.cpp b/TAO/DevGuideExamples/PortableInterceptors/Auth/ClientInterceptor.cpp
index e0c2bef7b55..44fb5acca7c 100644
--- a/TAO/DevGuideExamples/PortableInterceptors/Auth/ClientInterceptor.cpp
+++ b/TAO/DevGuideExamples/PortableInterceptors/Auth/ClientInterceptor.cpp
@@ -59,7 +59,6 @@ ClientInterceptor::send_request (
// Add this context to the service context list.
ri->add_request_service_context (sc, false);
-
}
void
diff --git a/TAO/DevGuideExamples/PortableInterceptors/IOR/ClientInterceptor.cpp b/TAO/DevGuideExamples/PortableInterceptors/IOR/ClientInterceptor.cpp
index b8d9b9b3a06..711e6188f93 100644
--- a/TAO/DevGuideExamples/PortableInterceptors/IOR/ClientInterceptor.cpp
+++ b/TAO/DevGuideExamples/PortableInterceptors/IOR/ClientInterceptor.cpp
@@ -84,7 +84,6 @@ ClientInterceptor::send_request (
// Add this context to the service context list.
ri->add_request_service_context (sc, false);
-
}
void
diff --git a/TAO/DevGuideExamples/PortableInterceptors/PICurrent/ClientInterceptor.cpp b/TAO/DevGuideExamples/PortableInterceptors/PICurrent/ClientInterceptor.cpp
index c46cca7caf8..b42c29831c5 100644
--- a/TAO/DevGuideExamples/PortableInterceptors/PICurrent/ClientInterceptor.cpp
+++ b/TAO/DevGuideExamples/PortableInterceptors/PICurrent/ClientInterceptor.cpp
@@ -87,7 +87,6 @@ ClientInterceptor::send_request (PortableInterceptor::ClientRequestInfo_ptr ri)
x = false;
flag <<= CORBA::Any::from_boolean(x);
pic->set_slot(slot,flag);
-
}
void
diff --git a/TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ClientInterceptor.cpp b/TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ClientInterceptor.cpp
index 656d2383bce..bfefd32bb06 100644
--- a/TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ClientInterceptor.cpp
+++ b/TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ClientInterceptor.cpp
@@ -20,7 +20,6 @@ ClientInterceptor (IOP::CodecFactory_var cf)
// Obtain the CDR encapsulation Codec.
this->codec = cf->create_codec (encoding);
-
}
ClientInterceptor::~ClientInterceptor (void)
@@ -67,7 +66,6 @@ ClientInterceptor::send_request (
// Add this context to the service context list.
ri->add_request_service_context (sc, false);
-
}
void
diff --git a/TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ServerInterceptor.cpp b/TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ServerInterceptor.cpp
index e59cd9bb0d5..76e16098445 100644
--- a/TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ServerInterceptor.cpp
+++ b/TAO/DevGuideExamples/PortableInterceptors/SimpleCodec/ServerInterceptor.cpp
@@ -21,7 +21,6 @@ ServerInterceptor::ServerInterceptor (IOP::CodecFactory_var cf)
// Obtain the CDR encapsulation Codec.
this->codec = cf->create_codec (encoding);
-
}
ServerInterceptor::~ServerInterceptor ()