ItEr26S13AltaEtiquetasTipoEtiqueta: [FixBug] Constructors need at least package visibility (Hibernate requirement)
This commit is contained in:
parent
b1bb380e96
commit
f8350cba48
2 changed files with 2 additions and 2 deletions
|
|
@ -26,7 +26,7 @@ public class Label extends BaseEntity {
|
|||
private Set<OrderElement> orderElements;
|
||||
|
||||
// Default constructor, needed by Hibernate
|
||||
private Label() {
|
||||
protected Label() {
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ public class LabelType extends BaseEntity {
|
|||
private Set<Label> labels;
|
||||
|
||||
// Default constructor, needed by Hibernate
|
||||
private LabelType() {
|
||||
protected LabelType() {
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue