Bug 977013 - TelemetryTimestamps.jsm should use Cu.cloneInto() rather than JSON.stringify/parse r=yoric

This commit is contained in:
Tim Taubert 2014-02-26 11:55:40 +01:00
Родитель 892be8eafd
Коммит 1038706063
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -46,7 +46,7 @@ this.TelemetryTimestamps = {
* to attach to the telemetry submission.
*/
get: function TT_get() {
// Return a copy of the object by passing it through JSON.
return JSON.parse(JSON.stringify(timeStamps));
// Return a copy of the object.
return Cu.cloneInto(timeStamps, {});
}
};