dead member

This commit is contained in:
rusefillc 2024-02-12 22:45:10 -05:00
parent 66d519c157
commit f57782c6c8
1 changed files with 0 additions and 2 deletions

View File

@ -166,13 +166,11 @@ public class ByteRateOfChange {
} }
public static class TraceReport extends HashMap<ByteId, ByteStatistics> { public static class TraceReport extends HashMap<ByteId, ByteStatistics> {
private final List<CANPacket> packets;
private final String simpleFileName; private final String simpleFileName;
private final HashMap<ByteId, ByteStatistics> statistics; private final HashMap<ByteId, ByteStatistics> statistics;
private final double durationMs; private final double durationMs;
public TraceReport(List<CANPacket> packets, String simpleFileName, HashMap<ByteId, ByteStatistics> statistics) { public TraceReport(List<CANPacket> packets, String simpleFileName, HashMap<ByteId, ByteStatistics> statistics) {
this.packets = packets;
this.simpleFileName = simpleFileName; this.simpleFileName = simpleFileName;
this.statistics = statistics; this.statistics = statistics;
this.durationMs = getDurationMs(packets); this.durationMs = getDurationMs(packets);