Changeset 31916 for main


Ignore:
Timestamp:
2017-08-23T19:02:31+12:00 (7 years ago)
Author:
ak19
Message:

Adjusting some comments to correctly reflect the most recent changes.

Location:
main/trunk/greenstone3/src/java/org/greenstone/gsdl3/collection
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/collection/Collection.java

    r31915 r31916  
    7373    /** time when this collection was built Used by RSS */
    7474    protected long lastmodified = 0;
    75     /** earliestDatestamp of this collection. Used by RSS and as fallback by OAI */
     75    /** earliestDatestamp of this collection. Used by RSS. No longer used as fallback by OAI */
    7676        protected long earliestDatestamp = 0;
    7777
     
    187187    }
    188188
    189     // Used by OAI Receptionist (as second fallback) and RSSRetrieve
     189    // Used by RSSRetrieve. No longer used by OAI Receptionist (as second fallback)
    190190    public long getLastmodified()
    191191    {
     
    193193    }
    194194
    195     // used by the OAIReceptionist (as fallback) and RSSRetrieve
     195    // used by RSSRetrieve, no longer used as fallback by the OAIReceptionist
    196196    public long getEarliestDatestamp()
    197197    {
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/collection/OAICollection.java

    r31915 r31916  
    169169          this.earliestOAIDatestamp = -1;
    170170          logger.warn("No OAI timestamp for collection " + this.cluster_name);
    171           //logger.warn("No OAI timestamp for collection " + this.cluster_name
    172           //+ ". Falling back to using its earliestDatestamp from build config: " + this.earliestDatestamp);
    173171          } else {
    174172          this.earliestOAIDatestamp = earliestTimestamp; // milliseconds
Note: See TracChangeset for help on using the changeset viewer.