summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:39:49 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:39:49 +0100
commit3a999137577b6b2ba98de04c73cf11e8b740c7cc (patch)
tree98fa5988269740f91c82e8ad302be1388213f485 /TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
parent9027b24610848c0eb0d768b60b132ce9e09dee7d (diff)
downloadATCD-3a999137577b6b2ba98de04c73cf11e8b740c7cc.tar.gz
Removed redundant void
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp b/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
index c23841d19cd..29217f504e7 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
@@ -8,7 +8,7 @@
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-TAO_Notify_Reactive_Task::TAO_Notify_Reactive_Task (void)
+TAO_Notify_Reactive_Task::TAO_Notify_Reactive_Task ()
:timer_ (0)
{
}
@@ -18,7 +18,7 @@ TAO_Notify_Reactive_Task::~TAO_Notify_Reactive_Task ()
}
void
-TAO_Notify_Reactive_Task::init (void)
+TAO_Notify_Reactive_Task::init ()
{
ACE_ASSERT (this->timer_.get() == 0);
@@ -30,13 +30,13 @@ TAO_Notify_Reactive_Task::init (void)
}
void
-TAO_Notify_Reactive_Task::release (void)
+TAO_Notify_Reactive_Task::release ()
{
delete this; //TODO: Release via factory.
}
void
-TAO_Notify_Reactive_Task::shutdown (void)
+TAO_Notify_Reactive_Task::shutdown ()
{
}
@@ -47,7 +47,7 @@ TAO_Notify_Reactive_Task::execute (TAO_Notify_Method_Request& method_request)
}
TAO_Notify_Timer*
-TAO_Notify_Reactive_Task::timer (void)
+TAO_Notify_Reactive_Task::timer ()
{
return this->timer_.get();
}