tmf: Some analyses don't call super() in their constructor
authorMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Mon, 23 Jun 2014 21:14:58 +0000 (17:14 -0400)
committerMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Wed, 25 Jun 2014 20:35:55 +0000 (16:35 -0400)
Change-Id: I5720736a9f6faa935f11220f077ab45d99a07467
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/28895
Tested-by: Hudson CI
Reviewed-by: Genevieve Bastien <gbastien+lttng@versatic.net>
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statistics/TmfStatisticsEventTypesModule.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/statistics/TmfStatisticsTotalsModule.java

index 49a957ba2e00703dc7b1826d61dc26e5cef88258..fec4665b60749032082cc89dc50bc56631cb17e1 100644 (file)
@@ -49,6 +49,7 @@ public class TmfStatisticsEventTypesModule extends TmfStateSystemAnalysisModule
      * Constructor
      */
     public TmfStatisticsEventTypesModule() {
+        super();
         setId(ID);
         setName(NAME);
     }
index 5b88a5f886f21dc8236f43f7c8d0aa97c7b74dee..513f7deeb22c7c9ba6d8710e2aa569296bece481 100644 (file)
@@ -46,6 +46,7 @@ public class TmfStatisticsTotalsModule extends TmfStateSystemAnalysisModule {
      * Constructor
      */
     public TmfStatisticsTotalsModule() {
+        super();
         setId(ID);
         setName(NAME);
     }
This page took 0.027411 seconds and 5 git commands to generate.