Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc committed Oct 21, 2021
1 parent c6e8a5c commit c7b5351
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ public void close() {
public void writeData(byte[] content, int contentOffset, int ecuOffset, int size) {
isBurnPending = true;

byte packet[] = new byte[5 + size];
byte[] packet = new byte[5 + size];
packet[0] = Fields.TS_CHUNK_WRITE_COMMAND;
putShort(packet, 1, swap16(ecuOffset));
putShort(packet, 3, swap16(size));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.concurrent.atomic.AtomicReference;

public class rusEFIVersion {
public static final int CONSOLE_VERSION = 20211019;
public static final int CONSOLE_VERSION = 20211021;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");

public static long classBuildTimeMillis() {
Expand Down

0 comments on commit c7b5351

Please sign in to comment.