tmf: Null-annotate state system API classes
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / src / org / eclipse / tracecompass / tmf / core / tests / statesystem / mipmap / TmfMipmapStateProviderTest.java
index 42cac462bee1cf09d8a494a23d8bf17dcfc4b69a..b4c3bd0eb4164dee0c923cde648af85dd1d16774 100644 (file)
@@ -63,8 +63,9 @@ public class TmfMipmapStateProviderTest {
     public static void init() {
         TmfMipmapStateProviderStub mmp = new TmfMipmapStateProviderStub(RESOLUTION, Type.LONG);
         IStateHistoryBackend be = new InMemoryBackend(0);
-        ssq = StateSystemFactory.newStateSystem(SSID, be);
-        mmp.assignTargetStateSystem(ssq);
+        ITmfStateSystemBuilder ssb = StateSystemFactory.newStateSystem(SSID, be);
+        mmp.assignTargetStateSystem(ssb);
+        ssq = ssb;
 
         for (long time = START_TIME; time <= END_TIME; time += INTERVAL) {
             long value = time / INTERVAL;
This page took 0.02514 seconds and 5 git commands to generate.