Changeset 31916
- Timestamp:
- 2017-08-23T19:02:31+12:00 (6 years ago)
- 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 73 73 /** time when this collection was built Used by RSS */ 74 74 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 */ 76 76 protected long earliestDatestamp = 0; 77 77 … … 187 187 } 188 188 189 // Used by OAI Receptionist (as second fallback) and RSSRetrieve189 // Used by RSSRetrieve. No longer used by OAI Receptionist (as second fallback) 190 190 public long getLastmodified() 191 191 { … … 193 193 } 194 194 195 // used by the OAIReceptionist (as fallback) and RSSRetrieve195 // used by RSSRetrieve, no longer used as fallback by the OAIReceptionist 196 196 public long getEarliestDatestamp() 197 197 { -
main/trunk/greenstone3/src/java/org/greenstone/gsdl3/collection/OAICollection.java
r31915 r31916 169 169 this.earliestOAIDatestamp = -1; 170 170 logger.warn("No OAI timestamp for collection " + this.cluster_name); 171 //logger.warn("No OAI timestamp for collection " + this.cluster_name172 //+ ". Falling back to using its earliestDatestamp from build config: " + this.earliestDatestamp);173 171 } else { 174 172 this.earliestOAIDatestamp = earliestTimestamp; // milliseconds
Note:
See TracChangeset
for help on using the changeset viewer.