Skip to content

Commit

Permalink
Fix auditing and setting controler modifications
Browse files Browse the repository at this point in the history
Signed-off-by: Avgustin Marinov <[email protected]>
  • Loading branch information
avgustinmm committed Dec 12, 2024
1 parent 1450115 commit 1b9f8bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public long getCreatedAt() {

@LastModifiedBy
public void setLastModifiedBy(final String lastModifiedBy) {
if (lastModifiedBy != null && isController()) {
if (this.lastModifiedBy != null && isController()) {
// initialized and controller = doesn't update
return;
}
Expand All @@ -115,7 +115,7 @@ public String getLastModifiedBy() {

@LastModifiedDate
public void setLastModifiedAt(final long lastModifiedAt) {
if (lastModifiedAt != 0 && isController()) {
if (this.lastModifiedAt != 0 && isController()) {
// initialized and controller = doesn't update
return;
}
Expand Down

0 comments on commit 1b9f8bb

Please sign in to comment.