dead code
This commit is contained in:
parent
5d75c36651
commit
a73f737748
|
@ -161,7 +161,6 @@ public class EngineSnifferPanel {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
crank.setZoomProvider(zoomControl.getZoomProvider());
|
|
||||||
resetImagePanel();
|
resetImagePanel();
|
||||||
|
|
||||||
LinkManager.engineState.registerStringValueAction(EngineReport.ENGINE_CHART, new EngineState.ValueCallback<String>() {
|
LinkManager.engineState.registerStringValueAction(EngineReport.ENGINE_CHART, new EngineState.ValueCallback<String>() {
|
||||||
|
@ -256,7 +255,6 @@ public class EngineSnifferPanel {
|
||||||
UpDownImage image = createImage(name);
|
UpDownImage image = createImage(name);
|
||||||
images.put(name, image);
|
images.put(name, image);
|
||||||
image.setTranslator(crank.createTranslator());
|
image.setTranslator(crank.createTranslator());
|
||||||
image.setZoomProvider(zoomControl.getZoomProvider());
|
|
||||||
imagePanel.add(image, index);
|
imagePanel.add(image, index);
|
||||||
imagePanel.setLayout(new GridLayout(images.size(), 1));
|
imagePanel.setLayout(new GridLayout(images.size(), 1));
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,6 @@ import com.rusefi.ui.util.UiUtils;
|
||||||
import com.rusefi.waves.EngineReport;
|
import com.rusefi.waves.EngineReport;
|
||||||
import com.rusefi.waves.RevolutionLog;
|
import com.rusefi.waves.RevolutionLog;
|
||||||
import com.rusefi.waves.TimeAxisTranslator;
|
import com.rusefi.waves.TimeAxisTranslator;
|
||||||
import com.rusefi.waves.ZoomProvider;
|
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
@ -88,9 +87,6 @@ public class UpDownImage extends JPanel {
|
||||||
UiUtils.setToolTip(this, "Channel " + NameUtil.getUiName(name), secondLine);
|
UiUtils.setToolTip(this, "Channel " + NameUtil.getUiName(name), secondLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setZoomProvider(ZoomProvider zoomProvider) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public UpDownImage(EngineReport wr, String name) {
|
public UpDownImage(EngineReport wr, String name) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
setWaveReport(wr, null);
|
setWaveReport(wr, null);
|
||||||
|
@ -181,7 +177,6 @@ public class UpDownImage extends JPanel {
|
||||||
if (showMouseOverText)
|
if (showMouseOverText)
|
||||||
paintScaleLines(g2, d);
|
paintScaleLines(g2, d);
|
||||||
|
|
||||||
int duration = engineReport.getDuration();
|
|
||||||
g2.setColor(Color.black);
|
g2.setColor(Color.black);
|
||||||
|
|
||||||
int line = 0;
|
int line = 0;
|
||||||
|
|
Loading…
Reference in New Issue