| Index: netlog_viewer/netlog_viewer/util.js
|
| diff --git a/netlog_viewer/netlog_viewer/util.js b/netlog_viewer/netlog_viewer/util.js
|
| index 57048ddfe68f71999e429eff94f0c92839819073..ab1853f46ddcc32f500c9a58e7a518493a7b7235 100644
|
| --- a/netlog_viewer/netlog_viewer/util.js
|
| +++ b/netlog_viewer/netlog_viewer/util.js
|
| @@ -164,8 +164,9 @@ function shallowCloneObject(object) {
|
| function assertFirstConstructorCall(ctor) {
|
| // This is the variable which is set by cr.addSingletonGetter().
|
| if (ctor.hasCreateFirstInstance_) {
|
| - throw Error('The class ' + ctor.name + ' is a singleton, and should ' +
|
| - 'only be accessed using ' + ctor.name + '.getInstance().');
|
| + throw Error(
|
| + 'The class ' + ctor.name + ' is a singleton, and should ' +
|
| + 'only be accessed using ' + ctor.name + '.getInstance().');
|
| }
|
| ctor.hasCreateFirstInstance_ = true;
|
| }
|
|
|