auto-sync
This commit is contained in:
parent
6916fe1fc2
commit
643c5bf76e
|
@ -111,16 +111,12 @@ public class Table2D extends TableWithData {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void populateTable(byte[] input, int romRamOffset) throws ArrayIndexOutOfBoundsException, IndexOutOfBoundsException {
|
public void populateTable(byte[] input, int romRamOffset) throws IndexOutOfBoundsException {
|
||||||
centerLayout.setRows(2);
|
centerLayout.setRows(2);
|
||||||
centerLayout.setColumns(this.getDataSize());
|
centerLayout.setColumns(this.getDataSize());
|
||||||
|
|
||||||
try {
|
axis.populateTable(input, romRamOffset);
|
||||||
axis.populateTable(input, romRamOffset);
|
super.populateTable(input, romRamOffset);
|
||||||
super.populateTable(input, romRamOffset);
|
|
||||||
} catch (ArrayIndexOutOfBoundsException ex) {
|
|
||||||
throw new ArrayIndexOutOfBoundsException();
|
|
||||||
}
|
|
||||||
|
|
||||||
// add to table
|
// add to table
|
||||||
for (int i = 0; i < this.getDataSize(); i++) {
|
for (int i = 0; i < this.getDataSize(); i++) {
|
||||||
|
|
|
@ -38,7 +38,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
||||||
* @see EngineSnifferPanel
|
* @see EngineSnifferPanel
|
||||||
*/
|
*/
|
||||||
public class Launcher {
|
public class Launcher {
|
||||||
public static final int CONSOLE_VERSION = 20160912;
|
public static final int CONSOLE_VERSION = 20160913;
|
||||||
public static final boolean SHOW_STIMULATOR = false;
|
public static final boolean SHOW_STIMULATOR = false;
|
||||||
private static final String TAB_INDEX = "main_tab";
|
private static final String TAB_INDEX = "main_tab";
|
||||||
protected static final String PORT_KEY = "port";
|
protected static final String PORT_KEY = "port";
|
||||||
|
|
Loading…
Reference in New Issue