Dooh, unStudlyName() returns an uppercase string (in spite of what it said in

its method documentation). And I was doing the wrong thing with event names
which were already unstudlied (but are also uppercase).


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3883 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-02-23 18:52:59 +00:00
parent bd235efe20
commit ff098a9394
@@ -175,7 +175,7 @@ public abstract class ConfigRegistry
public void attributeChanged (AttributeChangedEvent event) public void attributeChanged (AttributeChangedEvent event)
{ {
// mirror this configuration update to the persistent config // mirror this configuration update to the persistent config
String key = StringUtil.unStudlyName(event.getName()); String key = event.getName().toLowerCase();
Object value = event.getValue(); Object value = event.getValue();
if (value instanceof Boolean) { if (value instanceof Boolean) {
setValue(key, ((Boolean)value).booleanValue()); setValue(key, ((Boolean)value).booleanValue());
@@ -212,7 +212,7 @@ public abstract class ConfigRegistry
* its corresponding value in the associated config repository. */ * its corresponding value in the associated config repository. */
protected void initField (Field field) protected void initField (Field field)
{ {
String key = StringUtil.unStudlyName(field.getName()); String key = StringUtil.unStudlyName(field.getName()).toLowerCase();
Class type = field.getType(); Class type = field.getType();
try { try {
@@ -294,7 +294,7 @@ public abstract class ConfigRegistry
*/ */
protected void serializeAttribute (String attributeName) protected void serializeAttribute (String attributeName)
{ {
String key = StringUtil.unStudlyName(attributeName); String key = StringUtil.unStudlyName(attributeName).toLowerCase();
Object value; Object value;
try { try {
value = object.getAttribute(attributeName); value = object.getAttribute(attributeName);