hmg65 commented on code in PR #2660:
URL: https://github.com/apache/fineract/pull/2660#discussion_r995115169
##########
fineract-provider/src/main/java/org/apache/fineract/mix/data/ContextData.java:
##########
@@ -18,29 +18,18 @@
*/
package org.apache.fineract.mix.data;
-public class ContextData {
-
- private final String dimensionType;
- private final String dimension;
- private final Integer periodType;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import lombok.experimental.Accessors;
- public ContextData(final String dimensionType, final String dimension,
final Integer taxonomyType) {
- this.dimensionType = dimensionType;
- this.dimension = dimension;
- this.periodType = taxonomyType.equals(MixTaxonomyData.BALANCESHEET) ||
taxonomyType.equals(MixTaxonomyData.PORTFOLIO) ? 0 : 1;
Review Comment:
corrected
--
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]