Skip to content

Commit

Permalink
story(ccls-1998): remove boolean defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
porritta committed Jan 25, 2024
1 parent f68c6c7 commit dea8fa0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,19 +256,19 @@ public class Opponent implements Serializable {
* Indicates the application mode.
*/
@Column(name = "APPMODE")
private Boolean appMode = true;
private Boolean appMode;

/**
* Indicates if the Opponent represents an amendment.
*/
@Column(name = "AMENDMENT")
private Boolean amendment = false;
private Boolean amendment;

/**
* Indicates if the Opponent is awarded.
*/
@Column(name = "AWARD")
private Boolean award = false;
private Boolean award;

/**
* Indicates if public funding has been applied for.
Expand All @@ -280,13 +280,13 @@ public class Opponent implements Serializable {
* Indicates if the Opponent is shared.
*/
@Column(name = "SHARED_IND")
private Boolean sharedInd = false;
private Boolean sharedInd;

/**
* Indicates if the Opponent is marked for deletion.
*/
@Column(name = "DELETE_IND")
private Boolean deleteInd = true;
private Boolean deleteInd;

/**
* The outcome associated with the Opponent.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public class Proceeding implements Serializable {
* Lead proceeding indicator.
*/
@Column(name = "LEAD_PROCEEDING_IND")
private Boolean leadProceedingInd = false;
private Boolean leadProceedingInd;

/**
* LAR Scope.
Expand Down

0 comments on commit dea8fa0

Please sign in to comment.