Use sane switch style :)

This commit is contained in:
Bryan Ashby 2016-08-03 22:43:06 -06:00
parent f024527db1
commit 33f0553ea9
11 changed files with 223 additions and 222 deletions

View file

@ -1024,8 +1024,8 @@ MultiLineEditTextView.prototype.getData = function() {
MultiLineEditTextView.prototype.setPropertyValue = function(propName, value) {
switch(propName) {
case 'mode' : this.mode = value; break;
case 'autoScroll' : this.autoScroll = value; break;
case 'mode' : this.mode = value; break;
case 'autoScroll' : this.autoScroll = value; break;
}
MultiLineEditTextView.super_.prototype.setPropertyValue.call(this, propName, value);