Let's use our protected _index instead of going through the accessor.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@64 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2006-08-25 01:58:41 +00:00
parent ebcaedeb5a
commit 37b60db7a7
@@ -60,7 +60,7 @@ public class PropertyChangedEvent extends EZEvent
override public function toString () :String override public function toString () :String
{ {
return "[PropertyChangedEvent name=" + _name + ", value=" + _newValue + return "[PropertyChangedEvent name=" + _name + ", value=" + _newValue +
((index < 0) ? "" : (", index=" + index)) + "]"; ((_index < 0) ? "" : (", index=" + _index)) + "]";
} }
override public function clone () :Event override public function clone () :Event