Split those up because I'm doing evil things in yohoho & need to override

part of it.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5787 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2009-05-18 17:43:33 +00:00
parent cb5398c9e8
commit 01721df0b8
@@ -309,8 +309,12 @@ public class DatabaseConfigRegistry extends ConfigRegistry
setAndFlush(field, StringUtil.joinEscaped(value));
}
protected void setAndFlush (final String field, final String value) {
protected void setAndFlush (String field, String value) {
_data.put(field, value);
flush(field, value);
}
protected void flush (final String field, final String value) {
String iname = "updateConfig(" + _path + ", " + field + ", value=" + value + ")";
_invoker.postUnit(new WriteOnlyUnit(iname) {
@Override