Skip to content

Commit

Permalink
remove sorting variables to be used in display
Browse files Browse the repository at this point in the history
  • Loading branch information
Dert1129 committed Nov 11, 2024
1 parent 40e969e commit b0e02b5
Showing 1 changed file with 0 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,6 @@ public class SpatialViewerExternalLinkDataset {
private String hypertensionDuration;
private String onRaasBlockade;
private String race;
@Transient
private String releaseVersionDisplay;

@Transient
private int participantIdSort;

@Transient
private String imageTypeSort;

public SpatialViewerExternalLinkId getId() {
return id;
Expand Down Expand Up @@ -286,15 +278,6 @@ public void setReleaseVersion(Double releaseVersion){
}


public String getReleaseVersionDisplay() {
return releaseVersionDisplay;
}

public void setReleaseVersionDisplay(String releaseVersionDisplay) {
this.releaseVersionDisplay = releaseVersionDisplay;
}


public String getDlFileId() {
return null;
}
Expand All @@ -315,17 +298,6 @@ public String getFileNameSort() {
return null;
}


@JsonProperty("image_type_sort")
public String getImageTypeSort() {
return imageType.toLowerCase();
}

@JsonProperty("participant_id_sort")
public int getParticipantIdSort() {
return Integer.parseInt(redcapId.replace("-", "").replace("[", "").replace("]", ""));
}

@JsonIgnore
public int getFileId() {
return (Integer) null;
Expand Down

0 comments on commit b0e02b5

Please sign in to comment.