From: Roland Haeder Date: Fri, 25 Sep 2015 09:45:54 +0000 (+0200) Subject: minor: the parent category is the full instance or null now, not just the category... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4fa913089ffdcad0a751908dd018ff4c4a0da79a;p=jshop-core.git minor: the parent category is the full instance or null now, not just the category's id Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/jshopcore/model/category/ProductCategory.java b/src/org/mxchange/jshopcore/model/category/ProductCategory.java index 3b0923e..2fb8d08 100644 --- a/src/org/mxchange/jshopcore/model/category/ProductCategory.java +++ b/src/org/mxchange/jshopcore/model/category/ProductCategory.java @@ -50,7 +50,7 @@ public class ProductCategory implements Category, Comparable { private Long categoryId; /** - * Parent category categoryId + * Parent category */ @JoinColumn (name = "parent_id") @OneToOne (targetEntity = ProductCategory.class)