Console should get much smarter around compatibility with older units #6845
only:one step smarter
This commit is contained in:
parent
6cb4d7e864
commit
2c0e3e8ba7
|
@ -1,5 +1,6 @@
|
|||
plugins {
|
||||
id 'java-library'
|
||||
id 'java-test-fixtures'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -50,6 +50,7 @@ public class Msq {
|
|||
}
|
||||
|
||||
public ConfigurationImage asImage(IniFileModel instance) {
|
||||
Objects.requireNonNull(instance, "ini model");
|
||||
ConfigurationImage ci = new ConfigurationImage(instance.getMetaInfo().getTotalSize());
|
||||
|
||||
Page page = findPage();
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
plugins {
|
||||
id 'java-library'
|
||||
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
|
||||
id 'java-test-fixtures'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api project(':config_definition')
|
||||
api project(':ecu_io')
|
||||
testFixturesApi project(':ecu_io')
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue