mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-05 05:30:29 +00:00
Bug 1145394 - Fix unparseable JS code (r=gavin)
--HG-- extra : rebase_source : 02710e8e3368e445f9841945cd905d7726d395d8
This commit is contained in:
parent
eefcc0b4fd
commit
7b55cc0a76
@ -202,7 +202,7 @@ var Connection = Class({
|
||||
},
|
||||
poolFor: function(id) {
|
||||
for (let pool of this.pools.values()) {
|
||||
if pool.has(id)
|
||||
if (pool.has(id))
|
||||
return pool;
|
||||
}
|
||||
},
|
||||
@ -797,7 +797,7 @@ var Tab = Client.from({
|
||||
"storageActor": "storage",
|
||||
"gcliActor": "gcli",
|
||||
"memoryActor": "memory",
|
||||
"eventLoopLag": "eventLoopLag"
|
||||
"eventLoopLag": "eventLoopLag",
|
||||
|
||||
"trace": "trace", // missing
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user