Merge pull request #43 from nosqlbench/globalvars

globalvars cleanup
This commit is contained in:
Sebastián Estévez 2020-03-05 13:39:12 -05:00 committed by GitHub
commit 6395e72511
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +0,0 @@
package io.nosqlbench.engine.extensions.globalvars;
import io.nosqlbench.virtdata.library.basics.core.threadstate.SharedState;
import java.util.concurrent.ConcurrentHashMap;
public class GlobalVarsWrapper {
ConcurrentHashMap<String, Object> map = SharedState.gl_ObjectMap;
String test = "puppies";
public ConcurrentHashMap<String, Object> getMap(){
this.map.get("");
return this.map;
}
public String getTest(){
return this.test;
}
}