[BAEL-3936] Fixed formatting
This commit is contained in:
parent
74e02b2216
commit
36d7572276
|
@ -28,8 +28,7 @@ public class Cocktail {
|
|||
referencedColumnName = "cocktail",
|
||||
insertable = false, updatable = false,
|
||||
foreignKey = @javax.persistence
|
||||
.ForeignKey(value = ConstraintMode.NO_CONSTRAINT)
|
||||
)
|
||||
.ForeignKey(value = ConstraintMode.NO_CONSTRAINT))
|
||||
private Recipe recipe;
|
||||
|
||||
@OneToMany(fetch = FetchType.LAZY)
|
||||
|
@ -40,7 +39,7 @@ public class Cocktail {
|
|||
insertable = false,
|
||||
updatable = false,
|
||||
foreignKey = @javax.persistence
|
||||
.ForeignKey(value = ConstraintMode.NO_CONSTRAINT))
|
||||
.ForeignKey(value = ConstraintMode.NO_CONSTRAINT))
|
||||
private List<MultipleRecipe> recipeList;
|
||||
|
||||
public Cocktail() {
|
||||
|
|
Loading…
Reference in New Issue