[gnome-shell/datetime] Remove separator comment lines



commit d7ad949ecbb3c6490a665bba6ae68044a44725ba
Author: David Zeuthen <davidz redhat com>
Date:   Wed Jan 19 13:33:19 2011 -0500

    Remove separator comment lines
    
    Signed-off-by: David Zeuthen <davidz redhat com>

 js/ui/calendar.js |   11 -----------
 1 files changed, 0 insertions(+), 11 deletions(-)
---
diff --git a/js/ui/calendar.js b/js/ui/calendar.js
index dd63261..4c34aa0 100644
--- a/js/ui/calendar.js
+++ b/js/ui/calendar.js
@@ -104,9 +104,7 @@ function _getEventDayAbbreviation(dayNumber) {
     return abbreviations[dayNumber];
 }
 
-// ------------------------------------------------------------------------
 // Abstraction for an appointment/task in a calendar
-//
 
 function CalendarTask(date, summary) {
     this._init(date, summary);
@@ -119,14 +117,11 @@ CalendarTask.prototype = {
     }
 };
 
-// ------------------------------------------------------------------------
 // Interface for appointments/tasks - e.g. the contents of a calendar
 //
 // TODO: write e.g. EvolutionEventSource
-//
 
 // First, an implementation with no events
-//
 function EmptyEventSource() {
     this._init();
 }
@@ -147,7 +142,6 @@ EmptyEventSource.prototype = {
 Signals.addSignalMethods(EmptyEventSource.prototype);
 
 // Second, an implementation with fake events
-//
 function FakeEventSource() {
     this._init();
 }
@@ -251,13 +245,10 @@ FakeEventSource.prototype = {
 };
 Signals.addSignalMethods(FakeEventSource.prototype);
 
-/* ------------------------------------------------------------------------ */
-
 // Calendar:
 // @eventSource: is an object implementing the EventSource API, e.g. the
 // getTasks(), hasTasks() methods and the ::changed signal.
 // @eventList: is the EventList object to control
-//
 function Calendar(eventSource, eventList) {
     this._init(eventSource, eventList);
 }
@@ -512,8 +503,6 @@ Calendar.prototype = {
 
 Signals.addSignalMethods(Calendar.prototype);
 
-// ------------------------------------------------------------------------
-
 function EventsList(eventSource) {
     this._init(eventSource);
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]