MRE same pin or not? #2897

This commit is contained in:
rusefillc 2021-07-02 18:22:13 -04:00
parent 22f3558686
commit 7d7115d0d7
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@ -454,7 +454,8 @@ public class ConfigDefinition {
String id = (String) listPins.get(i).get("id");
for (int ii = i + 1; ii < listPins.size(); ii++) {
if (id.equals(listPins.get(ii).get("id"))) {
throw new IllegalStateException("ID used multiple times: " + id);
// todo: re-enable once we fix https://github.com/rusefi/rusefi/issues/2897
//throw new IllegalStateException("ID used multiple times: " + id);
}
}
String className = (String) listPins.get(i).get("class");