Skip to content
Snippets Groups Projects
Commit 3cd9c09d authored by Nicolas Voirol's avatar Nicolas Voirol
Browse files

Fixed empty domains

parent 71df38e6
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,8 @@ public class LeonCodeGenRuntimeHenkinMonitor extends LeonCodeGenRuntimeMonitor { ...@@ -26,7 +26,8 @@ public class LeonCodeGenRuntimeHenkinMonitor extends LeonCodeGenRuntimeMonitor {
} }
} }
domain.addAll(domains.get(type)); List<Tuple> tpeDomain = domains.get(type);
if (tpeDomain != null) domain.addAll(tpeDomain);
return domain; return domain;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment