ss: Remove the synchronized from the full query
authorGeneviève Bastien <gbastien+lttng@versatic.net>
Wed, 14 Dec 2016 18:02:00 +0000 (13:02 -0500)
committerGenevieve Bastien <gbastien+lttng@versatic.net>
Fri, 20 Jan 2017 14:26:47 +0000 (09:26 -0500)
The full queries do not need to be synchronized. Only the transient state
does and it is.

Change-Id: I0f3b0327b0edb331f77b267a14cbbb02a83f120a
Signed-off-by: Geneviève Bastien <gbastien+lttng@versatic.net>
Reviewed-on: https://git.eclipse.org/r/87150
Reviewed-by: Hudson CI
statesystem/org.eclipse.tracecompass.statesystem.core/src/org/eclipse/tracecompass/internal/statesystem/core/StateSystem.java

index 8c8550eb6e8e932b6d194c6db56e4fa8e03bf78a..c9a4a9d6e9418d45fe058f71c6e3df9201af46e4 100644 (file)
@@ -533,7 +533,7 @@ public class StateSystem implements ITmfStateSystemBuilder {
     //--------------------------------------------------------------------------
 
     @Override
-    public synchronized List<ITmfStateInterval> queryFullState(long t)
+    public List<ITmfStateInterval> queryFullState(long t)
             throws TimeRangeException, StateSystemDisposedException {
         if (isDisposed) {
             throw new StateSystemDisposedException();
This page took 0.02682 seconds and 5 git commands to generate.