This is an automated email from the ASF dual-hosted git repository.

arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new b457b2aa93 FINERACT-2421: Fix lombok annotations
b457b2aa93 is described below

commit b457b2aa93faf61ce64a1f140c02b111b161c90d
Author: Adam Saghy <[email protected]>
AuthorDate: Fri Dec 19 15:35:44 2025 +0100

    FINERACT-2421: Fix lombok annotations
---
 .../core/domain/AbstractAuditableWithUTCDateTimeCustom.java       | 8 ++++----
 .../infrastructure/core/domain/AbstractPersistableCustom.java     | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/AbstractAuditableWithUTCDateTimeCustom.java
 
b/fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/AbstractAuditableWithUTCDateTimeCustom.java
index 1107fdbf82..7aa1315e28 100644
--- 
a/fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/AbstractAuditableWithUTCDateTimeCustom.java
+++ 
b/fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/AbstractAuditableWithUTCDateTimeCustom.java
@@ -53,19 +53,19 @@ public abstract class 
AbstractAuditableWithUTCDateTimeCustom<T extends Serializa
     private static final long serialVersionUID = 141481953116476081L;
 
     @Column(name = CREATED_BY_DB_FIELD, updatable = false, nullable = false)
-    @Setter(onMethod_ = @Override)
+    @Setter
     private Long createdBy;
 
     @Column(name = CREATED_DATE_DB_FIELD, updatable = false, nullable = false)
-    @Setter(onMethod_ = @Override)
+    @Setter
     private OffsetDateTime createdDate;
 
     @Column(name = LAST_MODIFIED_BY_DB_FIELD, nullable = false)
-    @Setter(onMethod_ = @Override)
+    @Setter
     private Long lastModifiedBy;
 
     @Column(name = LAST_MODIFIED_DATE_DB_FIELD, nullable = false)
-    @Setter(onMethod_ = @Override)
+    @Setter
     private OffsetDateTime lastModifiedDate;
 
     @Override
diff --git 
a/fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/AbstractPersistableCustom.java
 
b/fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/AbstractPersistableCustom.java
index ae4744d424..8f0e756d3f 100644
--- 
a/fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/AbstractPersistableCustom.java
+++ 
b/fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/AbstractPersistableCustom.java
@@ -54,12 +54,12 @@ public abstract class AbstractPersistableCustom<T extends 
Serializable> implemen
 
     @Id
     @GeneratedValue(strategy = GenerationType.IDENTITY)
-    @Getter(onMethod_ = @Override)
+    @Getter
     private T id;
 
     @Transient
     @Setter(value = AccessLevel.NONE)
-    @Getter(onMethod_ = @Override)
+    @Getter
     private boolean isNew = true;
 
     @PrePersist

Reply via email to