| Index: third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js b/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| index aaff64778ca95b71674a331481b810fcc183eaed..7178c35048f11183bf749f84f20f2b6da2aa1bbb 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/TabbedEditorContainer.js
|
| @@ -515,11 +515,11 @@ WebInspector.TabbedEditorContainer.prototype = {
|
| },
|
|
|
| /**
|
| - * @return {!WebInspector.UISourceCode} uiSourceCode
|
| + * @return {?WebInspector.UISourceCode} uiSourceCode
|
| */
|
| currentFile: function()
|
| {
|
| - return this._currentFile;
|
| + return this._currentFile || null;
|
| },
|
|
|
| __proto__: WebInspector.Object.prototype
|
|
|