Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit cb01629

Browse files
author
sowerstl
committed
Changed variable name to make a little more sense.
1 parent e40fbbe commit cb01629

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/gov/osti/entity/DOECodeMetadata.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public String label() {
223223
private Date dateRecordUpdated;
224224

225225
// determine whether or not the RELEASE DATE was changed
226-
private transient boolean setReleaseDate=false;
226+
private transient boolean hasSetReleaseDate=false;
227227

228228
// Jackson object mapper
229229
private static final ObjectMapper mapper = new ObjectMapper()
@@ -616,7 +616,7 @@ public void setWorkflowStatus(Status status) {
616616
public void setReleaseDate(Date date) {
617617
this.releaseDate = date;
618618
// set the fact we have called this method to set the date value
619-
this.setReleaseDate=true;
619+
this.hasSetReleaseDate=true;
620620
}
621621

622622
@Column (name="release_date")
@@ -752,7 +752,7 @@ void updatedAt() {
752752
*/
753753
@JsonIgnore
754754
public boolean hasSetReleaseDate() {
755-
return setReleaseDate;
755+
return hasSetReleaseDate;
756756
}
757757

758758
/**

0 commit comments

Comments
 (0)