Skip to content

Commit

Permalink
Rename boolean varialbe name isDynamic -> dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
forus committed Oct 12, 2024
1 parent be8648c commit 71a5e0f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class VirtualStudyData implements Serializable {
private String typeOfCancerId;
private String pmid;

private Boolean isDynamic;
private Boolean dynamic;

public String getOwner() {
return owner;
Expand Down Expand Up @@ -126,10 +126,10 @@ public void setPmid(String pmid) {
}

public Boolean getDynamic() {
return isDynamic;
return dynamic;
}

public void setDynamic(Boolean dynamic) {
isDynamic = dynamic;
this.dynamic = dynamic;
}
}

0 comments on commit 71a5e0f

Please sign in to comment.