Skip to content

Commit

Permalink
renamed GoobiScript
Browse files Browse the repository at this point in the history
  • Loading branch information
rsehr committed Mar 7, 2016
1 parent aefabf0 commit 8cf6bd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Goobi/src/de/sub/goobi/helper/GoobiScript.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ public void execute(List<Integer> inProzesse, String inScript) {
unloadRuleset();
}

else if (myParameters.get("action").equalsIgnoreCase("updateFileSize")) {
updateFileSize(inProzesse);
else if (myParameters.get("action").equalsIgnoreCase("countImages")) {
countImages(inProzesse);
} else if (myParameters.get("action").equalsIgnoreCase("countMetadata")) {
countMetadata(inProzesse);
} else {
Expand Down Expand Up @@ -1184,7 +1184,7 @@ private void exportDms(List<Integer> processes, String exportImages, boolean exp
}
}

private void updateFileSize(List<Integer> processes) {
private void countImages(List<Integer> processes) {
for (Integer processId : processes) {
Process p = ProcessManager.getProcessById(processId);
if (p.getSortHelperImages() == 0) {
Expand Down

0 comments on commit 8cf6bd1

Please sign in to comment.