Skip to content

Commit da09efe

Browse files
committed
Cleanup
1 parent 5f297f8 commit da09efe

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

orcid-api-web/tutorial/affiliations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Editing the affiliations sections of a record requires a 3 step OAuth token with
5858

5959
- **end-date** _(optional)_ The date the affiliation ended or will end
6060

61-
- **organization** _(required)_ Information about the organization the affiliation was with. A Ringgold, Grid, ROR, or Crossref Funder Registry organization identifier is required in 3.0+
61+
- **organization** _(required)_ Information about the organization the affiliation was with. A ROR, or Crossref Funder Registry organization identifier is required in 3.0+
6262

6363
- **address** _(required)_ Information about the physical location of the organization the affiliation is with. A city and country are required (region is optional)
6464

orcid-scheduler-web/src/main/java/org/orcid/scheduler/loader/source/cli/LoadDataForOrganizationSource.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,7 @@ public static void main(String[] args) {
5858
if(StringUtils.equalsIgnoreCase(loadData.orgType, FUNDREF_TYPE)) {
5959
LOG.info("Loading orgs from Fundref");
6060
loadData.orgLoadManager.loadOrg(loadData.fundrefOrgSource);
61-
}
62-
else if(StringUtils.equalsIgnoreCase(loadData.orgType, RINGGOLD_TYPE)) {
63-
LOG.info("Loading orgs from Ringgold");
64-
loadData.orgLoadManager.loadOrg(loadData.ringgoldOrgSource);
65-
}
66-
else { //default to ROR
61+
} else { //default to ROR
6762
LOG.info("Loading orgs from ROR");
6863
loadData.orgLoadManager.loadOrg(loadData.rorOrgSource);
6964
}

0 commit comments

Comments
 (0)