Skip to content
Snippets Groups Projects
Commit 3ce940ab authored by legoc's avatar legoc
Browse files
parents 2125b96e a272b949
No related branches found
No related tags found
No related merge requests found
......@@ -571,4 +571,12 @@ public class ConfigManager {
return "tcp://localhost:7000";
}
public boolean mockMode() {
String value = getStringOrNothingAtAll("mockMode");
if (value != null) {
return Boolean.valueOf(value);
}
return false;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment