| Index: third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js b/third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js
|
| index 3711cf55ff88c585555637852c972596292b73e8..b15e0cd743c88dbc75d6fca8079d5feeab9d6a2c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js
|
| @@ -123,7 +123,7 @@ Sources.FilteredUISourceCodeListDelegate = class extends UI.FilteredListWidget.D
|
| var uiSourceCode = this._uiSourceCodes[itemIndex];
|
| var fullDisplayName = uiSourceCode.fullDisplayName();
|
| var indexes = [];
|
| - var score = new Sources.FilePathScoreFunction(query).score(fullDisplayName, indexes);
|
| + new Sources.FilePathScoreFunction(query).score(fullDisplayName, indexes);
|
| var fileNameIndex = fullDisplayName.lastIndexOf('/');
|
|
|
| titleElement.textContent = uiSourceCode.displayName() + (this._queryLineNumberAndColumnNumber || '');
|
|
|