| Index: third_party/WebKit/Source/devtools/front_end/common/Trie.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/common/Trie.js b/third_party/WebKit/Source/devtools/front_end/common/Trie.js
|
| index 35a28bb3bcf601b29304ca1145f6e890c3c9da86..808622e712c3f114f94109f1362657265fab5852 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/common/Trie.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/common/Trie.js
|
| @@ -8,7 +8,7 @@
|
| WebInspector.Trie = function()
|
| {
|
| this.clear();
|
| -}
|
| +};
|
|
|
| WebInspector.Trie.prototype = {
|
| /**
|
| @@ -141,4 +141,4 @@ WebInspector.Trie.prototype = {
|
| /** @type {!Array<number>} */
|
| this._freeNodes = [];
|
| }
|
| -}
|
| +};
|
|
|