git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Web Inspector: Remove unnecessary promise rejection handlers now that we use the...
[WebKit-https.git]
/
Source
/
WebInspectorUI
/
UserInterface
/
Views
/
TextEditor.js
diff --git
a/Source/WebInspectorUI/UserInterface/Views/TextEditor.js
b/Source/WebInspectorUI/UserInterface/Views/TextEditor.js
index
8ee382a
..
ab96d39
100644
(file)
--- a/
Source/WebInspectorUI/UserInterface/Views/TextEditor.js
+++ b/
Source/WebInspectorUI/UserInterface/Views/TextEditor.js
@@
-200,7
+200,7
@@
WI.TextEditor = class TextEditor extends WI.View
updateFormattedState(formatted)
{
- return this._format(formatted)
.catch(handlePromiseException)
;
+ return this._format(formatted);
}
hasFormatter()