| Index: remoting/webapp/crd/js/server_log_entry.js
|
| diff --git a/remoting/webapp/crd/js/server_log_entry.js b/remoting/webapp/crd/js/server_log_entry.js
|
| index e660945dff44953c6a3c73ad9b7ea9245f1531ea..7d848aa5b5a4a089f8909778f7108508fd933a75 100644
|
| --- a/remoting/webapp/crd/js/server_log_entry.js
|
| +++ b/remoting/webapp/crd/js/server_log_entry.js
|
| @@ -21,7 +21,7 @@ var remoting = remoting || {};
|
| * @constructor
|
| */
|
| remoting.ServerLogEntry = function() {
|
| - /** @type Object.<string, string> */ this.dict = {};
|
| + /** @type Object<string, string> */ this.dict = {};
|
| };
|
|
|
| /** @private */
|
| @@ -209,7 +209,7 @@ remoting.ServerLogEntry.prototype.toStanza = function() {
|
| * @param {number} indentLevel the indentation level
|
| */
|
| remoting.ServerLogEntry.prototype.toDebugLog = function(indentLevel) {
|
| - /** @type Array.<string> */ var fields = [];
|
| + /** @type Array<string> */ var fields = [];
|
| for (var key in this.dict) {
|
| fields.push(key + ': ' + this.dict[key]);
|
| }
|
|
|