Remove unused method

This commit is contained in:
Dale Schultz 2018-12-22 10:30:34 -05:00
parent 092db3f683
commit bee5e8d1a1
No known key found for this signature in database
GPG Key ID: EA2C8AD6CB5C2AF2
1 changed files with 0 additions and 13 deletions

View File

@ -282,17 +282,4 @@ public final class J2534ConnectionISO14230 implements ConnectionManager {
LOGGER.trace(String.format("Config get P3_MIN value = %d msec", i / 2));
return i;
}
//
// private void addressLoadReset() {
// final byte[] loadReset = {
// (byte) 0x02,
// (byte) 0xAC, (byte) 0x81
// (byte) 0x04, (byte) 0x21, (byte) 0x00, (byte) 0x04, (byte) 0x01, (byte) 0x2A
// };
// //04210004012A
// api.writeMsg(channelId, loadReset, 155L, TxFlags.NO_FLAGS);
// LOGGER.debug(String.format("loadReset Request = %s", asHex(loadReset)));
// final byte[] response = api.readMsg(channelId, 1, 2000L);
// LOGGER.debug(String.format("loadReset Response = %s", asHex(response)));
// }
}