From c2f05dd0386c270a215e9227db72fbc4854b41e3 Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Tue, 31 May 2011 08:41:48 +0200 Subject: [PATCH] Revert "fix regression" This reverts commit 5a98124d47aa15fa92c6fe9fcd64a625e818ad4e. --- lib/ace/document.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/document.js b/lib/ace/document.js index 4a886886..70ab0509 100644 --- a/lib/ace/document.js +++ b/lib/ace/document.js @@ -128,7 +128,7 @@ var Document = function(text) { * Get a verbatim copy of the given line as it is in the document */ this.getLine = function(row) { - return this.$lines ? (this.$lines[row] || "") : ""; + return this.$lines[row] || ""; }; this.getLines = function(firstRow, lastRow) {