Ambika-Sony commented on code in PR #5554:
URL: https://github.com/apache/fineract/pull/5554#discussion_r3102003318


##########
fineract-core/src/main/java/org/apache/fineract/infrastructure/core/service/DataEnricherProcessor.java:
##########
@@ -27,13 +27,14 @@
 @Component
 public class DataEnricherProcessor {
 
-    private final List<DataEnricher<?>> enhancers;
+    private final List<DataEnricher> enhancers;
 
     @Autowired
-    public DataEnricherProcessor(Optional<List<DataEnricher<?>>> enhancers) {
+    public DataEnricherProcessor(Optional<List<DataEnricher>> enhancers) {
         this.enhancers = enhancers.orElse(new ArrayList<>());
     }
 
+    @SuppressWarnings({ "unchecked", "rawtypes" })

Review Comment:
   Removed!! ready to review.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to