Skip to content

Commit 7e5567b

Browse files
committed
Register KeyValueMap as part of the cache stack
1 parent 7ee3396 commit 7e5567b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/picoded/dstack/struct/cache/StructCacheStack.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ protected Core_DataStructure initDataStructure(String name, String type) {
3232
Core_DataStructure ret = null;
3333
if (type.equalsIgnoreCase("DataObjectMap")) {
3434
ret = new StructCache_DataObjectMap();
35+
} else if (type.equalsIgnoreCase("KeyValueMap")) {
36+
ret = new StructCache_KeyValueMap();
3537
}
3638

3739
// If datastrucutre initialized, setup name

0 commit comments

Comments
 (0)