partial fixes before polling up updates

This commit is contained in:
Jonathan Shook
2024-03-25 17:34:06 -05:00
parent aaa1d1dcab
commit 1d96b00824
10 changed files with 110 additions and 16 deletions

View File

@@ -1134,5 +1134,11 @@ public class ParsedTemplateMap implements LongFunction<Map<String, ?>>, StaticFi
}
public Map<String,Object> getCombinedPrototype() {
Map<String,Object> prototype = new LinkedHashMap<>();
prototype.putAll(getDynamicPrototype());
prototype.putAll(getStaticPrototype());
prototype.putAll(getConfigPrototype());
return prototype;
}
}