From efcee3247f1178c118ccee302a087c213a2a1381 Mon Sep 17 00:00:00 2001 From: Marc-Andre Laperle Date: Mon, 13 Jun 2016 16:41:02 -0400 Subject: [PATCH] Revert "ust.core: making some classes final" This reverts commit ac52feb8c7e7dbc3caa69207c1df59b841a7012d. Change-Id: I4bbdb49c9f4cecf10e628a8274c8fd0f6ef1ac56 Signed-off-by: Marc-Andre Laperle Reviewed-on: https://git.eclipse.org/r/75195 Reviewed-by: Hudson CI Reviewed-by: Matthew Khouzam --- .../ust/core/analysis/debuginfo/UstDebugInfoBinaryAspect.java | 2 +- .../ust/core/analysis/debuginfo/UstDebugInfoFunctionAspect.java | 2 +- .../ust/core/analysis/debuginfo/UstDebugInfoSourceAspect.java | 2 +- .../lttng2/ust/core/trace/LttngUstEventFactory.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoBinaryAspect.java b/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoBinaryAspect.java index 3cb29f2851..8457b99af8 100644 --- a/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoBinaryAspect.java +++ b/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoBinaryAspect.java @@ -30,7 +30,7 @@ import org.eclipse.tracecompass.tmf.core.trace.TmfTraceUtils; * @author Alexandre Montplaisir * @since 2.0 */ -public final class UstDebugInfoBinaryAspect implements ITmfEventAspect { +public class UstDebugInfoBinaryAspect implements ITmfEventAspect { /** Singleton instance */ public static final UstDebugInfoBinaryAspect INSTANCE = new UstDebugInfoBinaryAspect(); diff --git a/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoFunctionAspect.java b/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoFunctionAspect.java index 756a983625..6c73d0072a 100644 --- a/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoFunctionAspect.java +++ b/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoFunctionAspect.java @@ -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 { +public class UstDebugInfoFunctionAspect implements ITmfEventAspect { /** Singleton instance */ public static final UstDebugInfoFunctionAspect INSTANCE = new UstDebugInfoFunctionAspect(); diff --git a/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoSourceAspect.java b/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoSourceAspect.java index 416f8d38f4..98c0fd4a48 100644 --- a/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoSourceAspect.java +++ b/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/analysis/debuginfo/UstDebugInfoSourceAspect.java @@ -29,7 +29,7 @@ import com.google.common.collect.Iterables; * @author Alexandre Montplaisir * @since 2.0 */ -public final class UstDebugInfoSourceAspect implements ITmfEventAspect { +public class UstDebugInfoSourceAspect implements ITmfEventAspect { /** Singleton instance */ public static final UstDebugInfoSourceAspect INSTANCE = new UstDebugInfoSourceAspect(); diff --git a/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/trace/LttngUstEventFactory.java b/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/trace/LttngUstEventFactory.java index 43454a4656..bfc658016e 100644 --- a/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/trace/LttngUstEventFactory.java +++ b/lttng/org.eclipse.tracecompass.lttng2.ust.core/src/org/eclipse/tracecompass/lttng2/ust/core/trace/LttngUstEventFactory.java @@ -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(); -- 2.34.1