taskain7 commented on code in PR #2971:
URL: https://github.com/apache/fineract/pull/2971#discussion_r1104451747


##########
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/domain/ChangedTransactionDetail.java:
##########
@@ -18,17 +18,15 @@
  */
 package org.apache.fineract.portfolio.loanaccount.domain;
 
-import java.util.HashMap;
+import java.util.LinkedHashMap;
 import java.util.Map;
 
 /**
  * Stores details of {@link LoanTransaction}'s that were reversed or newly 
created
- *
- *
  */
 public class ChangedTransactionDetail {
 
-    private final Map<Long, LoanTransaction> newTransactionMappings = new 
HashMap<>();
+    private final Map<Long, LoanTransaction> newTransactionMappings = new 
LinkedHashMap<>();

Review Comment:
   Maybe an integration test would make sense for this, wouldn't it?



-- 
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