Skip to content

Commit a406e47

Browse files
author
Chris K
committed
Fixup.
1 parent 40b7dcf commit a406e47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ecma-debugger/js-source-view.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,14 +1029,14 @@ cls.JsSourceView.__defineGetter__("default_y", function()
10291029
return this._default_y;
10301030
});
10311031

1032-
cls.JsSourceView.__defineSetter__("default_y", function() {};
1032+
cls.JsSourceView.__defineSetter__("default_y", function() {});
10331033

10341034
cls.JsSourceView.update_default_y = function()
10351035
{
10361036
var BP_IMAGE_HEIGHT = 12;
10371037
var d_line_h = window.defaults["js-source-line-height"];
10381038
this._default_y = (d_line_h - BP_IMAGE_HEIGHT) / 2 >> 0;
1039-
});
1039+
};
10401040

10411041
cls.JsSourceView.prototype = ViewBase;
10421042

0 commit comments

Comments
 (0)