dead code

This commit is contained in:
rusefi 2020-06-07 13:12:58 -04:00
parent bc0aa889d4
commit b05d318e77
4 changed files with 8 additions and 21 deletions

View File

@ -1,13 +1,7 @@
package com.rusefi.file;
import com.rusefi.FileLog;
import com.rusefi.core.EngineState;
import com.rusefi.models.Point3D;
import com.rusefi.models.XYData;
import com.rusefi.waves.EngineReport;
import java.util.HashMap;
import java.util.Map;
/**
* 7/18/13
@ -23,6 +17,7 @@ public class BaseMap {
FileLog.MAIN.logLine("Loading " + key + ">" + value);
final XYData data = new XYData();
/*
EngineState.EngineStateListener listener = new EngineState.EngineStateListenerImpl() {
Map<String, String> values = new HashMap<String, String>();
@ -58,6 +53,7 @@ public class BaseMap {
});
FileUtils.readFile2(filename, engineState);
//return AverageData.average(data, 8);
*/
return data;
}
}

View File

@ -35,14 +35,6 @@ public class ConnectionStatusLogic {
private List<Listener> listeners = new CopyOnWriteArrayList<>();
private ConnectionStatusLogic() {
LinkManager.engineState.timeListeners.add(new EngineTimeListener() {
@Override
public void onTime(double time) {
markConnected();
}
});
SensorCentral.getInstance().addListener(Sensor.TIME_SECONDS, new SensorCentral.SensorListener() {
@Override
public void onSensorUpdate(double value) {

View File

@ -253,7 +253,7 @@ public class EngineState {
void onUpdate(V value);
}
public interface EngineStateListener extends EngineTimeListener {
public interface EngineStateListener {
void beforeLine(String fullLine);
void onKeyValue(String key, String value);
@ -271,8 +271,5 @@ public class EngineState {
public void afterLine(String fullLine) {
}
public void onTime(double time) {
}
}
}

View File

@ -2,7 +2,6 @@ package com.rusefi;
import com.rusefi.core.MessagesCentral;
import com.rusefi.core.Sensor;
import com.rusefi.core.EngineTimeListener;
import com.rusefi.core.SensorCentral;
import com.rusefi.file.TableGenerator;
import com.rusefi.models.Point3D;
@ -13,14 +12,15 @@ import com.rusefi.ui.ChartHelper;
import com.rusefi.ui.RpmModel;
import com.rusefi.ui.widgets.PotCommand;
import com.rusefi.ui.widgets.RpmCommand;
import com.rusefi.io.LinkManager;
import net.ericaro.surfaceplotter.DefaultSurfaceModel;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.*;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
@ -283,6 +283,7 @@ public class EcuStimulator {
final CountDownLatch latch = new CountDownLatch(MEASURES);
/*
EngineTimeListener listener = new EngineTimeListener() {
@Override
public void onTime(double time) {
@ -303,6 +304,7 @@ public class EcuStimulator {
throw new IllegalStateException(e);
}
LinkManager.engineState.timeListeners.remove(listener);
*/
return result;
}