diff --git a/src/display-buffer.coffee b/src/display-buffer.coffee index f3a35264a..f32b0171e 100644 --- a/src/display-buffer.coffee +++ b/src/display-buffer.coffee @@ -735,9 +735,7 @@ class DisplayBuffer extends Model # # Returns a {Point}. screenPositionForBufferPosition: (bufferPosition, options) -> - # TODO: Expand this exception to cover all versions once we burn it in on non-release builds - if @isDestroyed() and not atom.isReleasedVersion() - throw new Error("This TextEditor has been destroyed") + throw new Error("This TextEditor has been destroyed") if @isDestroyed() { row, column } = @buffer.clipPosition(bufferPosition) [startScreenRow, endScreenRow] = @rowMap.screenRowRangeForBufferRow(row)