* Constructor with all required fields
* <p>
* @param categoryI18nKey Category i18n key
- * @param parentCategory Parent category
* @param categoryShownInStatistics Whether this category is shown in any
* statistics
*/
- public ProductCategory (final String categoryI18nKey, final Category parentCategory, final Boolean categoryShownInStatistics) {
+ public ProductCategory (final String categoryI18nKey, final Boolean categoryShownInStatistics) {
// Call other constructor
this();
// Set all here
this.categoryI18nKey = categoryI18nKey;
- this.parentCategory = parentCategory;
this.categoryShownInStatistics = categoryShownInStatistics;
}