DFU file read fix

This commit is contained in:
rusefi 2020-07-06 21:35:43 -04:00
parent bd26cf0033
commit 551794b3dc
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
package com.rusefi.dfu;
import java.io.IOException;
public class DfuReaderSandbox {
public static void main(String[] args) {
public static void main(String[] args) throws IOException {
DfuImage dfuImage = new DfuImage();
dfuImage.read("rusefi.dfu");
}