enjoy 4.3 release ^_^

This commit is contained in:
James
2019-07-03 11:35:34 +08:00
parent c88f7baad9
commit 1939fb4cc0
17 changed files with 839 additions and 118 deletions

View File

@@ -209,10 +209,16 @@ public class EngineConfig {
sharedObjectMap.put(name, object);
}
Map<String, Object> getSharedObjectMap() {
public Map<String, Object> getSharedObjectMap() {
return sharedObjectMap;
}
public synchronized void removeSharedObject(String name) {
if (sharedObjectMap != null) {
sharedObjectMap.remove(name);
}
}
/**
* Set output directive factory
*/