Skip to content

Commit 4b25fe4

Browse files
Rename 'getHashStorePropsFromMetadigProps' to 'getStorePropsFromMetadigProps' to improve clarity and revise javadoc
1 parent 2d2681d commit 4b25fe4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/edu/ucsb/nceas/mdqengine/scheduler/RequestReportJob.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ public void submitReportRequest(MultipartCNode cnNode, MultipartMNode mnNode, Bo
673673
*/
674674
private static HashStore getHashStoreFromMetadigProps() throws IOException {
675675
// Get hashstore with props from a config file to directly access sysmeta and eml metadata
676-
Map<String, Object> storeConfig = getHashStorePropsFromMetadigProps();
676+
Map<String, Object> storeConfig = getStorePropsFromMetadigProps();
677677
String storePath = (String) storeConfig.get("store_path");
678678
String storeDepth = (String) storeConfig.get("store_depth");
679679
String storeWidth = (String) storeConfig.get("store_width");
@@ -803,13 +803,13 @@ private SystemMetadata getSystemMetadataFromHashStoreOrNode(
803803
}
804804

805805
/**
806-
* Retrieves the hashstore properties by loading and parsing a metadig properties file for
807-
* keys with the prefix 'store.'
806+
* Retrieves the properties for a hashstore by loading and parsing a metadig properties file
807+
* for keys with the prefix 'store.'
808808
*
809809
* @return Map object that contains the following properties: store_path, store_depth,
810810
* store_width, store_algorithm and store_metadata_namespace
811811
*/
812-
private static Map<String, Object> getHashStorePropsFromMetadigProps() {
812+
private static Map<String, Object> getStorePropsFromMetadigProps() {
813813
String prefix = "store.";
814814
Map<String, Object> storeConfig = new HashMap<>();
815815
try {

0 commit comments

Comments
 (0)