Skip to content

Commit

Permalink
Merge pull request #408 from scriptom/fix/typo
Browse files Browse the repository at this point in the history
Fix non-ASCII character in CanvasReport
  • Loading branch information
johnsully83 authored Jan 20, 2023
2 parents 2231a96 + abda1a0 commit fd29d37
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ public void setVisibility(String visibility) {
}

@JsonProperty("isDeleted")
public Boolean getΙsDeleted() {
public Boolean getIsDeleted() {
return isDeleted;
}

@JsonProperty("isDeleted")
public void setΙsDeleted(Boolean isDeleted) {
public void setIsDeleted(Boolean isDeleted) {
this.isDeleted = isDeleted;
}

Expand Down

0 comments on commit fd29d37

Please sign in to comment.