Revert "ust.core: making some classes final"
authorMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Mon, 13 Jun 2016 20:41:02 +0000 (16:41 -0400)
committerMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Thu, 16 Jun 2016 04:57:39 +0000 (00:57 -0400)
This reverts commit ac52feb8c7e7dbc3caa69207c1df59b841a7012d.

Change-Id: I4bbdb49c9f4cecf10e628a8274c8fd0f6ef1ac56
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/75195
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoBinaryAspect.java
lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoFunctionAspect.java
lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoSourceAspect.java
lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/trace/LttngUstEventFactory.java

index 3cb29f28512a3f6f3b0bb52c3f21bdafdff7c628..8457b99af817a040c0a433c96558d5d94b3b70d4 100644 (file)
@@ -30,7 +30,7 @@ import org.eclipse.tracecompass.tmf.core.trace.TmfTraceUtils;
  * @author Alexandre Montplaisir
  * @since 2.0
  */
-public final class UstDebugInfoBinaryAspect implements ITmfEventAspect<BinaryCallsite> {
+public class UstDebugInfoBinaryAspect implements ITmfEventAspect<BinaryCallsite> {
 
     /** Singleton instance */
     public static final UstDebugInfoBinaryAspect INSTANCE = new UstDebugInfoBinaryAspect();
index 756a9836254a63855d3db0d33965147058ccd7cc..6c73d0072a88ff990b548e5deb698fa093eb14cb 100644 (file)
@@ -21,7 +21,7 @@ import org.eclipse.tracecompass.tmf.core.event.aspect.ITmfEventAspect;
  * @author Alexandre Montplaisir
  * @since 2.0
  */
-public final class UstDebugInfoFunctionAspect implements ITmfEventAspect<FunctionLocation> {
+public class UstDebugInfoFunctionAspect implements ITmfEventAspect<FunctionLocation> {
 
     /** Singleton instance */
     public static final UstDebugInfoFunctionAspect INSTANCE = new UstDebugInfoFunctionAspect();
index 416f8d38f4e40d33f53026eb8fcd9fb9a83f9e29..98c0fd4a48046bf7a6d7756aa270cf17c9daefc4 100644 (file)
@@ -29,7 +29,7 @@ import com.google.common.collect.Iterables;
  * @author Alexandre Montplaisir
  * @since 2.0
  */
-public final class UstDebugInfoSourceAspect implements ITmfEventAspect<SourceCallsite> {
+public class UstDebugInfoSourceAspect implements ITmfEventAspect<SourceCallsite> {
 
     /** Singleton instance */
     public static final UstDebugInfoSourceAspect INSTANCE = new UstDebugInfoSourceAspect();
index 43454a4656fb766b5dace63faaa093583853acf5..bfc658016ef05603cdb0218e5c2d195a739b765f 100644 (file)
@@ -27,7 +27,7 @@ import org.eclipse.tracecompass.tmf.ctf.core.trace.CtfTmfTrace;
  * @author Alexandre Montplaisir
  * @since 2.0
  */
-public final class LttngUstEventFactory extends CtfTmfEventFactory {
+public class LttngUstEventFactory extends CtfTmfEventFactory {
 
     private static final @NonNull LttngUstEventFactory INSTANCE = new LttngUstEventFactory();
 
This page took 0.027335 seconds and 5 git commands to generate.