Skip to content

Commit

Permalink
feat(jans-document-store): remove transient select field (#8509)
Browse files Browse the repository at this point in the history
Signed-off-by: shekhar16 <shekharlaad1609@gmail.com>
  • Loading branch information
shekhar16 committed May 14, 2024
1 parent 271e195 commit 3a66db6
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ public class Document extends Entry implements Serializable {

private static final long serialVersionUID = -2812480357430436503L;

private transient boolean selected;

@AttributeName(ignoreDuringUpdate = true)
private String inum;

Expand Down Expand Up @@ -86,14 +84,6 @@ public void setDescription(String description) {
this.description = description;
}

public boolean isSelected() {
return selected;
}

public void setSelected(boolean selected) {
this.selected = selected;
}

public String getDocument() {
return document;
}
Expand Down

0 comments on commit 3a66db6

Please sign in to comment.