ItEr26S13AltaEtiquetasTipoEtiqueta: [FixBug] Constructors need at least package visibility (Hibernate requirement)

This commit is contained in:
Diego Pino Garcia 2009-09-16 16:41:36 +02:00 committed by Javier Moran Rua
parent b1bb380e96
commit f8350cba48
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ public class Label extends BaseEntity {
private Set<OrderElement> orderElements;
// Default constructor, needed by Hibernate
private Label() {
protected Label() {
}

View file

@ -21,7 +21,7 @@ public class LabelType extends BaseEntity {
private Set<Label> labels;
// Default constructor, needed by Hibernate
private LabelType() {
protected LabelType() {
}