summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp16
1 files changed, 4 insertions, 12 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp b/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp
index 8d781e5a64d..6a76a9bc053 100644
--- a/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp
+++ b/TAO/orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp
@@ -1,7 +1,6 @@
#include "test_i.h"
#include "ace/OS_NS_time.h"
-
// Implementation skeleton constructor
Test_Dummy_i::Test_Dummy_i (void)
{
@@ -12,9 +11,7 @@ Test_Dummy_i::~Test_Dummy_i (void)
{
}
-char * Test_Dummy_i::getMessage (
- void
- )
+char * Test_Dummy_i::getMessage (void)
{
// Add your implementation here
return CORBA::string_dup("Test::Dummy---->Hello World");
@@ -29,22 +26,17 @@ Test_Time_i::~Test_Time_i (void)
{
}
-::CORBA::Long Test_Time_i::current_time (
- void
- )
+::CORBA::Long Test_Time_i::current_time (void)
{
ACE_DEBUG ((LM_DEBUG, "(%P|%t)Test_Time_i::current_time called\n"));
return CORBA::Long (ACE_OS::time (0));
}
-void Test_Time_i::shutdown (
- void
- )
+void Test_Time_i::shutdown (void)
{
ACE_DEBUG ((LM_DEBUG,
- "%s\n",
+ "%C\n",
"Time_i is shutting down"));
-
}