Index: third_party/WebKit/Source/devtools/front_end/formatter_worker/IdentityFormatter.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/formatter_worker/IdentityFormatter.js b/third_party/WebKit/Source/devtools/front_end/formatter_worker/IdentityFormatter.js |
index bafb5f2b1b3f352da51a87a44849d4c730427392..e428b7066a0853465c8abbb56ae3943227fd1b08 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/formatter_worker/IdentityFormatter.js |
+++ b/third_party/WebKit/Source/devtools/front_end/formatter_worker/IdentityFormatter.js |
@@ -21,9 +21,7 @@ WebInspector.IdentityFormatter.prototype = { |
format: function(text, lineEndings, fromOffset, toOffset) |
{ |
var content = text.substring(fromOffset, toOffset); |
- var startLine = lineEndings.lowerBound(fromOffset); |
- var endLine = lineEndings.lowerBound(toOffset); |
- this._builder.addToken(content, fromOffset, startLine, endLine); |
+ this._builder.addToken(content, fromOffset); |
} |
} |