Skip to content

Commit

Permalink
Undo unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-ronge committed Apr 15, 2024
1 parent 5c00c6e commit e6dc1a5
Showing 1 changed file with 8 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public List<Batch> getBatches() {
}

/*
* If list is empty just set, if not first clear and next set.
* Set batches, if list is empty just set, if not first clear and next set.
*/
@Override
@SuppressWarnings("unchecked")
Expand Down Expand Up @@ -459,8 +459,7 @@ public List<Comment> getComments() {
/**
* Set comments.
*
* @param comments
* as List of Comment objects
* @param comments as List of Comment objects
*/
public void setComments(List<Comment> comments) {
this.comments = comments;
Expand Down Expand Up @@ -493,8 +492,7 @@ public boolean isExported() {
/**
* Set exported.
*
* @param exported
* as boolean
* @param exported as boolean
*/
public void setExported(boolean exported) {
this.exported = exported;
Expand All @@ -512,8 +510,7 @@ public List<Map<String, Object>> getMetadata() {
/**
* Set metadata.
*
* @param metadata
* as Map
* @param metadata as Map
*/
public void setMetadata(List<Map<String, Object>> metadata) {
this.metadata = metadata;
Expand Down Expand Up @@ -551,18 +548,16 @@ public Boolean getInChoiceListShown() {
/**
* Set inChoiceListShown.
*
* @param inChoiceListShown
* as java.lang.Boolean
* @param inChoiceListShown as java.lang.Boolean
*/
public void setInChoiceListShown(Boolean inChoiceListShown) {
this.inChoiceListShown = inChoiceListShown;
}

/**
* Determines whether or not two processes are equal. Two instances of
* {@code Process} are equal if the values of their {@code Id},
* {@code Title}, {@code OutputName} and {@code CreationDate} member fields
* are the same.
* {@code Process} are equal if the values of their {@code Id}, {@code Title},
* {@code OutputName} and {@code CreationDate} member fields are the same.
*
* @param object
* An object to be compared with this {@code Process}.
Expand Down Expand Up @@ -622,7 +617,6 @@ public void setNumberOfStructures(Integer numberOfStructures) {
* Get OCR-D workflow identifier.
*
* @return The OCR-D workflow identifier
* @see <a href="https://ocr-d.de/en/workflows">OCR-D Workflow Guide</a>
*/
public String getOcrdWorkflowId() {
return ocrdWorkflowId;
Expand All @@ -632,7 +626,7 @@ public String getOcrdWorkflowId() {
* Set the OCR-D workflow identifier.
*
* @param ocrdWorkflowId
* The identifier of the OCR-D workflow
* The identifier of the OCR-D workflow
*/
public void setOcrdWorkflowId(String ocrdWorkflowId) {
this.ocrdWorkflowId = ocrdWorkflowId;
Expand Down

0 comments on commit e6dc1a5

Please sign in to comment.