Skip to content

Commit

Permalink
Remove duplicate field declaration, change to protected (#1272)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Peels <[email protected]>
  • Loading branch information
mpeels and Michael Peels authored Apr 3, 2024
1 parent 77ddf41 commit 5ad2f8d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
public class CodedQuestionEntity extends WaQuestion {
static final String CODED_QUESTION_TYPE = "CODED";

@Column(name = "code_set_group_id")
private Long codeSetGroupId;

@Column(name = "default_value", length = 300)
private String defaultValue;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public abstract class WaQuestion {
private Long lastChgUserId;

@Column(name = "code_set_group_id")
private Long codeSetGroupId;
protected Long codeSetGroupId;

public abstract String getDataType();

Expand Down

0 comments on commit 5ad2f8d

Please sign in to comment.