Fixed trailing comma (strict warning) and interface constant. Not part of build.

This commit is contained in:
dmose%mozilla.org 2004-12-10 00:50:03 +00:00
Родитель e4c06a2ed2
Коммит bfb6ac1c24
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -62,8 +62,8 @@ function calDavCalendar() {
}
// some shorthand
const nsIWebDavOperationListener =
Components.interfaces.nsIWebDavOperationListener;
const nsIWebDAVOperationListener =
Components.interfaces.nsIWebDAVOperationListener;
const calICalendar = Components.interfaces.calICalendar;
const nsISupportsCString = Components.interfaces.nsISupportsCString;
const calIEvent = Components.interfaces.calIEvent;
@ -586,7 +586,7 @@ calDavCalendar.prototype = {
observeDeleteItem: function (aDeletedItem) {
for (var i = 0; i < this.mObservers.length; i++)
this.mObservers[i].onDeleteItem (aDeletedItem);
},
}
};