From ba118de010c6b0f9d2623fbf2274b0dc60a8168d Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Tue, 5 Oct 2010 21:03:09 +0000 Subject: [PATCH] Looks like this should just return if it can't get the value, rather than set the (possibly non-nullable) value to null. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6175 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/admin/client/FieldEditor.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java/com/threerings/admin/client/FieldEditor.java b/src/java/com/threerings/admin/client/FieldEditor.java index 9605ae8ed..a5478a3be 100644 --- a/src/java/com/threerings/admin/client/FieldEditor.java +++ b/src/java/com/threerings/admin/client/FieldEditor.java @@ -124,6 +124,7 @@ public abstract class FieldEditor extends JPanel value = getDisplayValue(); } catch (Exception e) { updateBorder(true); + return; } // submit an attribute changed event with the new value