code formatting

This commit is contained in:
rusefillc 2021-12-04 21:06:28 -05:00
parent 359640e7aa
commit a469f72eee
1 changed files with 4 additions and 4 deletions

View File

@ -128,11 +128,11 @@ public class Elm327Connector implements Closeable {
};
public void sendBytesToSerial(byte [] bytes) {
log.info("-------sendBytesToSerial "+bytes.length+" bytes:");
log.info("-------sendBytesToSerial " + bytes.length + " byte(s):");
for (int i = 0; i < bytes.length; i++) {
log.info("["+i+"] " + ((int)bytes[i] & 0xff));
}
for (int i = 0; i < bytes.length; i++) {
log.info("[" + i + "] " + ((int) bytes[i] & 0xff));
}
// 1 frame
if (bytes.length <= 7) {