Merge branch 'newTimestamps' into wifi_ftm

This commit is contained in:
2019-09-24 11:38:04 +02:00

View File

@@ -164,7 +164,7 @@ public final class LoggerRAM {
@Override
public int compareTo(@NonNull LogEntry another) {
return (timestamp < another.timestamp) ? (-1) : (+1);
return Long.compare(timestamp, another.timestamp);
}
}