Skip to content

Commit

Permalink
Fix non-ASCII character in CanvasReport
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptom committed Jan 20, 2023
1 parent 2231a96 commit abda1a0
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 abda1a0

Please sign in to comment.