Changeset 396

Show
Ignore:
Timestamp:
04/20/06 10:50:12
Author:
douglm
Message:

Now only 24 hours to the free/busy day

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/calendar3/calsvc/src/org/bedework/calsvc/CalSvc.java

    r395 r396  
    11351135 
    11361136        int limit = 10000; // XXX do this better 
    1137         while (gpp.startDt.before(end)) { 
     1137 
     1138        /* endDt is null first time through, then represents end of last 
     1139         * segment. 
     1140         */ 
     1141        while ((gpp.endDt == null) || (gpp.endDt.before(end))) { 
    11381142          //if (debug) { 
    11391143          //  trace("gpp.startDt=" + gpp.startDt + " end=" + end);