Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenwinship committed Dec 16, 2024
1 parent ea79a8f commit 4d28d0d
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1102,12 +1102,16 @@ public void setFileChecksumValue(String fileChecksumValue) {
this.fileChecksumValue = fileChecksumValue;
}

public Boolean getFileRestricted() { return fileRestricted; }
public Boolean getFileRestricted() {
return fileRestricted;
}

public void setFileRestricted(Boolean fileRestricted) {
this.fileRestricted = fileRestricted;
}
public Boolean getCanDownloadFile() { return canDownloadFile; }
public Boolean getCanDownloadFile() {
return canDownloadFile;
}

public void setCanDownloadFile(Boolean canDownloadFile) {
this.canDownloadFile = canDownloadFile;
Expand Down

0 comments on commit 4d28d0d

Please sign in to comment.