[openrtm-commit:02750] r1010 - trunk/OpenRTM-aist-Java/jp.go.aist.rtm.RTC/src/jp/go/aist/rtm/RTC/executionContext

openrtm @ openrtm.org openrtm @ openrtm.org
2017年 8月 17日 (木) 10:21:26 JST


Author: t-katami
Date: 2017-08-17 10:21:26 +0900 (Thu, 17 Aug 2017)
New Revision: 1010

Modified:
   trunk/OpenRTM-aist-Java/jp.go.aist.rtm.RTC/src/jp/go/aist/rtm/RTC/executionContext/PeriodicECSharedComposite_impl.java
Log:
[compat,bugfix,->RELENG_1_2] Fixed the items pointed out by the static code analysis tool.

Modified: trunk/OpenRTM-aist-Java/jp.go.aist.rtm.RTC/src/jp/go/aist/rtm/RTC/executionContext/PeriodicECSharedComposite_impl.java
===================================================================
--- trunk/OpenRTM-aist-Java/jp.go.aist.rtm.RTC/src/jp/go/aist/rtm/RTC/executionContext/PeriodicECSharedComposite_impl.java	2017-08-16 23:51:03 UTC (rev 1009)
+++ trunk/OpenRTM-aist-Java/jp.go.aist.rtm.RTC/src/jp/go/aist/rtm/RTC/executionContext/PeriodicECSharedComposite_impl.java	2017-08-17 01:21:26 UTC (rev 1010)
@@ -111,6 +111,7 @@
      */
     public ReturnCode_t onInitialize() {
 
+        super.onInitialize(); 
         rtcout.println(Logbuf.TRACE, 
                     "PeriodicECSharedComposite_impl.onInitialize()");
 
@@ -159,6 +160,7 @@
      */
     public ReturnCode_t onActivated(int exec_handle) {
 
+        super.onActivated(exec_handle); 
         rtcout.println(Logbuf.TRACE, "PeriodicECSharedComposite_impl.onActivated(" + Integer.toString(exec_handle) + ")");
         ExecutionContext[] ecs = get_owned_contexts();
         try {
@@ -181,6 +183,7 @@
      */
     public ReturnCode_t onDeactivated(int exec_handle) {
 
+        super.onDeactivated(exec_handle); 
         rtcout.println(Logbuf.TRACE, "PeriodicECSharedComposite_impl.onDeactivated(" + Integer.toString(exec_handle) + ")");
         ExecutionContext[] ecs = get_owned_contexts();
         try { 
@@ -202,6 +205,7 @@
      */
     public ReturnCode_t onReset(int exec_handle) {
 
+        super.onReset(exec_handle); 
         rtcout.println(Logbuf.TRACE, "PeriodicECSharedComposite_impl.onReset(" + Integer.toString(exec_handle) + ")");
         ExecutionContext[] ecs = get_owned_contexts();
         try { 
@@ -223,6 +227,7 @@
      */
     public ReturnCode_t onFinalize() {
 
+        super.onFinalize();
         rtcout.println(Logbuf.TRACE, "PeriodicECSharedComposite_impl.onFinalize()");
         m_org.removeAllMembers();
         rtcout.println(Logbuf.TRACE, 



More information about the openrtm-commit mailing list